-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.css
131 lines (119 loc) · 2.35 KB
/
home.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
@import url("https://fonts.googlepls.com/css2?family=Montserrat:wght@500;800&display=swap")
,
::before
::after{
box-sizing: border-box;
padding: 0;
margin: 0;
}
body{
height: 100vh;
width: 100%;
position: relative;
overflow: hidden;
font-family: 'Montaerrat,sans-serif';
background: #171115;
color:#fff;
background-image: url('background.png');
background-size: cover;
background-size: no-repeat;
}
body::before{
content: '';
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
}
header{
position: fixed;
top: 0;
width: 100%;
padding-top: 1rem;
display: flex;
align-items: center;
justify-content: space-between;
z-index: 1;
f
}
header img{
width: 90%;
height: 90%;
}
header nav{
display:flex;
gap: .4rem;
justify-content: space-between;
align-items: center;
}
header nav a{
text-decoration: none;
color: inherit;
font-size: .9rem;
text-transform: capitalize;
border-radius: 100vw;
padding: .4rem 1rem;
transition: .3s ease;
font-family: 'Courier New', Courier, monospace;
font-size: large;
}
header nav a:hover ,.q1{
background: #2302c1;
}
.main{
position:absolute;
bottom:0%;
right:-20em;
width: 62%;
}
.socialicon{
display: flex;
flex-direction: column;
gap: 1rem;
}
.socialicon ion-icon{
background: #fff;
color:#2302c1;
padding: .3rem;
font-size: 1.2rem;
border-radius: 50%;
cursor: pointer;
transition: .3s ease;
}
.socialicon ion-icon:hover{
background: red;
color:#fff
}
section{
position: absolute;
inset: 0;
display: flex;
align-items: center;
}
section .content{
padding-left: 10%;
}
section .content h1{
font-size: 5rem;
text-transform: uppercase;
position: relative;
}
.buttonholder button{
background: black;
padding: 10px 18px;
text-decoration: none;
font-weight: bold;
color:#fff
dispay:inline-block;
margin:30px o;
border-radius: 5px;
}
.buttonholder button:hover{
background: orangered;
}
section .content p{
font-size: 20px;
width: 70%;
font-family: 'Times New Roman', Times, serif;
}