-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
162 lines (128 loc) · 2.26 KB
/
style.css
File metadata and controls
162 lines (128 loc) · 2.26 KB
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body{
color: white;
.header{
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 20px 10%;
background: transparent;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 100;
}
.logo{
position: relative;
color: white;
font-size: xx-large;
text-decoration: none;
font-weight: 600;
width: 190px;
}
.navbar{
display:inline-block ;
font-size: 25px;
color: white;
text-decoration: none;
font-weight: bolder;
margin-left: 35px;
transition: .4s ease ;
text-decoration: none;
word-spacing: 16px;
}
.navbar a{
color: white;
background-color: cyan transparent;
transition: .4s ease ;
text-decoration: none;
border: 2px solid #0ef transparent;
border-radius: 36px;
padding: 2px 15px;
}
.navbar a:hover{
color: black;
background-color: #0ef;
box-shadow: 0 0 76px #0ef;
}
.home{
position: relative;
width: 100%;
justify-content: space-between;
height: 100vh;
background: url(waaaa.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
display: flex;
align-items: center;
padding: 70px 10% 0;
}
.home-content{
max-width: 600px;
}
.home-content h3{
font-size: 32px;
font-weight: 700;
}
.home-content h1{
font-size: 56px;
font-weight: 700;
margin: -3px 0;
}
.home-content p{
font-size: 20px;
}
.home-sci a{
display: inline-flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
background: transparent;
border: 2px solid #0ef;
border-radius: 50%;
font-size: 20px;
color: #0ef;
text-decoration: none;
margin: 30px 15px 30px 0;
}
.home-sci a:hover{
background-color: #0ef;
color: black;
transition: .5s ease;
box-shadow: 0 0 20px #0ef;
}
.btn-box{
display: inline-block;
padding: 12px 28px;
background: #0ef;
border-radius: 40px;
font-size: 16px;
color: #081b29;
letter-spacing: 1px;
text-decoration: none;
font-weight: 600;
}
.btn-box:hover{
background-color: #0ef;
color: black;
box-shadow: 0 0 5px #0ef, 0 0 25px cyan, 0 0 100px cyan, 0 0 200px cyan;
transition: .6s ease;
}
.lg{
width: 590px;
margin-bottom: 150px;
}
.dogoo{
cursor: text;
}
.dogoo:hover{
color: aqua;
}