-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathmain.css
More file actions
50 lines (44 loc) · 795 Bytes
/
main.css
File metadata and controls
50 lines (44 loc) · 795 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
50
html,
body {
margin: 0;
padding: 0;
}
body {
font-family: 'Slabo 27px', serif;
background: #f5f5f5;
color: #4d4d4d;
min-width: 230px;
max-width: 550px;
margin: 0 auto;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
font-smoothing: antialiased;
font-weight: 300;
}
input {
border-radius: 5px;
padding: 5px;
border: 1px solid rgba(0,0,0,0.3);
margin-right: 10px
}
input::-webkit-input-placeholder {
font-style: italic;
font-weight: 300;
color: rgba(0,0,0,0.3);
}
input::-moz-placeholder {
font-style: italic;
font-weight: 300;
color: rgba(0,0,0,0.3);
}
input::input-placeholder {
font-style: italic;
font-weight: 300;
color: rgba(0,0,0,0.3);
}
h1 {
font-weight: 100;
font-size: 100px;
padding:0;
margin: 0;
}