forked from javierbyte/img2css
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
70 lines (60 loc) · 867 Bytes
/
main.css
File metadata and controls
70 lines (60 loc) · 867 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
* {
padding: 0;
margin: 0;
position: relative;
}
body {
font-family: 'Roboto', sans-serif;
font-size: 16px;
line-height: 1.618;
font-weight: 300;
color: #404143;
}
h1 {
font-weight: 100;
font-size: 3em;
line-height: 1;
padding-bottom: 0.309em;
}
.padding-2x {
padding: 2em;
}
.padding-horizontal-2x {
padding: 0 2em;
}
.pixel {}
.dropZone {
height: 150px;
width: 150px;
margin: 1em 0;
display: flex;
text-align: center;
align-items: center;
border: 2px dashed #ccc;
padding: 2em;
cursor: pointer;
}
.dropZone span {
width: 100%;
}
.dropZone:hover {
border-color: #999;
}
.tutorial {
padding: 1em 0;
}
.code {
font-family: monaco, monospace;
font-size: 0.6em;
line-height: 1.309;
padding: 2em;
background: #f0f0f0;
}
.cf:before,
.cf:after {
content: " "; /* 1 */
display: table; /* 2 */
}
.cf:after {
clear: both;
}