-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexample.css
More file actions
71 lines (57 loc) · 846 Bytes
/
example.css
File metadata and controls
71 lines (57 loc) · 846 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
71
* {
font-family: 'Roboto', sans-serif;
box-sizing: border-box;
}
.clearfix {
overflow: auto;
}
.clearfix::after {
content: "";
clear: both;
display: table;
}
h1, h2 {
margin-top: 0;
}
body {
margin: 0;
padding: 0;
}
.editor-container {
background: #1f7cd8;
padding: 30px;
}
.editor-container > * {
max-width: 1200px;
margin: 0 auto;
color: #fff;
}
.output-container {
max-width: 1200px;
margin: 0 auto;
padding: 30px;
}
.mdl-js-textfield {
width: 100%;
}
#the-form {
margin-bottom: 50px;
}
.result {
border: 12px solid grey;
padding: 10px;
}
.result img {
width: 100%;
height: auto;
}
@media (min-width: 960px) {
#the-form {
width: 40%;
float: left;
}
.result {
width: 40%;
float: right;
}
}