-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathwhoasked.css
More file actions
49 lines (47 loc) · 870 Bytes
/
whoasked.css
File metadata and controls
49 lines (47 loc) · 870 Bytes
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
*{
background: black;
margin: 0;
padding: 0;
font-family: sans-serif;
}
.navbar{
width: 85%;
margin: auto;
padding: 35px 0;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo{
width: 129px;
cursor: pointer;
}
.navbar ul button{
width: 200px;
padding: 15px 0;
text-align: center;
margin: 20px 10px;
border-radius: 25px;
font-weight: bold;
border: 2px solid blueviolet;
background: transparent;
cursor: pointer;
color: white;
}
.content{
width: 100%;
position: absolute;
top: 50%;
transform: translateY(-50%);
text-align: center;
color: white;
}
.content h1{
font-size: 70px;
margin-top: 80px;
}
.content p{
margin: 20px auto;
font-weight: 100;
line-height: 25px;
}