-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
99 lines (82 loc) · 1.36 KB
/
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
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
@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
body {
font-family: 'Ubuntu', sans-serif;
margin: 0;
}
.img {
text-align: center;
}
.search-bar-container {
height: 125px;
width: 650px;
background-color: #EEEEEE;
}
.search-bar-container a {
padding-top: 5px;
text-align: center;
display: block;
}
.top-container {
margin-right: 16px;
font-size: 13px;
}
.container ul .top-container ul {
list-style-type: none;
margin: 0;
padding: 0;
}
#profile {
border-radius: 16px;
}
.container li,
.odev-footer a,
.top-container li {
display: inline;
padding-right: 10px;
}
.container a,
.top-container li a {
text-decoration: none;
color: black;
}
.container a:hover {
color: lightpink;
}
* {
box-sizing: border-box;
}
.header {
text-align: center;
padding: 32px;
}
.row {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding: 0 4px;
}
.column {
-ms-flex: 50%;
flex: 50%;
padding: 0 4px;
}
.column img {
margin-top: 8px;
vertical-align: middle;
}
.btn {
border: none;
outline: none;
padding: 10px 16px;
background-color: #f1f1f1;
cursor: pointer;
font-size: 18px;
}
.btn:hover {
background-color: #ddd;
}
.btn.active {
background-color: #666;
color: white;
}