-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
85 lines (73 loc) · 1.24 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
.react {
width: 100%;
height: auto;
display: inline-block;
border: transparent solid 2px;
transition: border 0.2s;
}
@media (min-width: 480px) {
.react {
width: calc(25% - 6px);
}
}
.react:hover {
border-color: lightblue;
}
.content {
max-width: 768px;
width: 90%;
margin: auto;
position: relative;
}
body {
font-family: 'Muli', Futura, sans-serif;
background: #2F2F2F;
color: white;
}
.header {
background-color: #2F2F2F;
position: fixed;
top: 0;
max-width: 768px;
width: 90%;
}
h1 {
letter-spacing: 1.2px;
font-size: 28pt;
margin: 0;
margin: 25px 0 10px 0;
text-transform: lowercase;
}
.search-bar {
margin-top: 130px;
text-align: center;
font-size: 24pt;
}
input#search {
height: 24pt;
font-size: 18pt;
background-color: transparent;
border: 0;
width: 100%;
text-align: left;
font-family: 'Muli', sans-serif;
letter-spacing: 1px;
color: lightblue;
}
input#search:focus {
outline: 0;
}
.reactions {
margin-top: 200px;
}
h2 {
margin: 0;
margin-bottom: 15px;
font-size: 12pt;
width: 100%;
text-transform: uppercase;
letter-spacing: 1px;
color: lightblue;
border-bottom: solid 1px lightblue;
padding-bottom: 5px;
}