forked from cjyueh/Microblog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (60 loc) · 1004 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
66
body {
background: url("background.png");
font-family: 'Homenaje', sans-serif;
}
article {
max-width: 960px;
margin: 7em auto;
position: relative;
text-align: center;
}
h1 {
font-size: 5em;
color: #555555;
}
#blog-input {
border: solid .05em #999999;
font-family: 'Dosis', sans-serif;
font-size: 1.5em;
margin-bottom: 1em;
padding: .15em 0;
text-align: center;
width: 15em;
}
#submit-button {
font-family: 'Dosis', sans-serif;
border: solid .1em #bbbbbb;
font-size: 1.15em;
color: #888888;
padding: .15em 1em;
background-color: #ffffff;
}
ul {
font-size: 2em;
list-style: none;
min-width: 300px;
margin-top: 2em;
padding: 0;
}
@media only screen and (max-width: 640px) {
h1 {
font-size: 3em;
}
#blog-input {
border-width: .07em;
font-size: 1.15em;
margin-bottom: 1em;
padding: .08em 0;
text-align: center;
width: 12em;
}
#submit-button {
border-width: .1em;
font-size: 1em;
padding: .08em .5em;
}
ul {
font-size: 1.5em;
margin-top: 2em;
}
}