-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (94 loc) · 1.62 KB
/
style.css
File metadata and controls
115 lines (94 loc) · 1.62 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
html, body {
background-color: #212121;
color: #F6F6F6;
font-family: sans-serif;
padding: .25rem;
max-width: 50rem;
margin: 0 auto;
}
label, textarea, input {
box-sizing: border-box;
display: block;
width: 100%;
}
label {
color: #6D9886;
font-weight: 700;
margin-top: 1rem;
margin-bottom: .5rem;
}
label em {
font-weight: 400;
}
textarea, input {
background-color: #F6F6F6;
border: none;
border-radius: .25rem;
padding: .5rem;
}
button {
cursor: pointer;
border-radius: .25rem;
padding: .5rem 1rem;
border: none;
font-weight: 700;
}
button:hover {
filter: brightness(80%);
transition: all .2s;
}
.subtitle-item {
display: flex;
margin-top: .5rem;
}
.subtitle-item select {
border-radius: .25rem;
margin-right: .25rem;
padding: .25rem;
}
.subtitle-item input {
width: 100%;
margin-right: .25rem;
}
.color-red {
color: #FF7878;
}
.btn-green {
background-color: #77D970;
}
.btn-red {
background-color: #FF7878;
}
.btn-blue {
background-color: #63B4B8;
}
.btn-white {
background-color: #F6F6F6;
}
#btn-action {
display: inline-block;
margin-top: .5rem;
}
footer {
border-top: .125rem solid #F6F6F6;
margin-top: 1rem;
}
#reference-link {
padding: 0;
text-align: right;
}
#reference-link li {
display: inline-block;
}
#reference-link li:not(:last-child) {
margin-right: .5rem;
}
#reference-link a {
color: #63B4B8;
text-decoration: none;
}
#reference-link a:hover {
text-decoration: underline;
filter: brightness(80%);
transition: all .2s;
}