-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (53 loc) · 849 Bytes
/
style.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
body{
margin: 0;
}
#nav{
display: flex;
justify-content: flex-end;
margin-top: 16px;
}
#nav a{
margin-right: 22px;
}
#nav a.topimage{
width: 26px;
height: 26px;
background: blueviolet;
border-radius: 50%;
}
#content{
margin-top: 220px;
}
#logo{
text-align: center;
}
#searchbarcontainer{
margin-top: 22px;
text-align: center;
}
#searchbar{
padding : 10px 10px;
outline: 0;
width: 500px;
border-radius: 26px;
border: 2px solid #eeee;
}
#buttons{
display: flex;
justify-content: center;
margin-top: 22px;
}
.button{
margin: 0 10px;
padding: 10px 16px;
cursor: pointer;
background: #eeee;
border-radius: 5px;
}
.center {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
padding: 10px;
}