-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
89 lines (74 loc) · 1.07 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
86
87
88
89
* {
box-sizing: border-box;
}
body {
margin: 0;
background: #F8F8F8;
font-family: "Helvetica Neue", Helvetica,Arial, sans-serif;
}
.hidden {
display: none;
}
.container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 1rem;
background: white;
border-radius: .3rem
}
.row {
margin-bottom: 1rem;
display: flex;
}
.row:last-of-type {
margin-bottom: .5rem;
}
.row .field:not(:last-child) {
margin-right: 1rem;
}
.field,
.button {
font-size: 1.2rem;
border-radius: .2rem;
}
.field {
display: block;
width: 100%;
border: 1px solid #ccc;
padding: .2rem;
}
.button {
-webkit-appearance: none;
border: none;
background: #4E99FE;
color: white;
padding: .5rem;
outline: none;
cursor: pointer;
}
.button:active {
background: #4E8DE1;
}
.button--full {
display: block;
width: 100%;
}
.showPreview,
.closePreview {
text-decoration: none;
color: #888;
}
.showPreview {
display: block;
text-align: center;
margin-bottom: .5rem;
}
.closePreview {
float: right;
}
.previewBtn:hover,
.previewBtn:focus {
color: #555;
}