-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathview.css
More file actions
63 lines (55 loc) · 892 Bytes
/
view.css
File metadata and controls
63 lines (55 loc) · 892 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
#app {
max-width: 650px;
padding: 10px 20px;
margin: 10px auto;
padding: 20px;
background: #f4f7f8;
border-radius: 8px;
font-family: Calibri, Sans-Serif;
font-size: 18px;
}
label {
display: block;
margin-bottom: 8px;
}
input, select {
border: none;
border-radius: 4px;
margin: 0;
outline: 0;
padding: 10px;
box-sizing: border-box;
background-color: #e8eeef;
color: #8a97a0;
box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
}
input:focus, select:focus {
background: #d2d9dd;
}
button {
position: relative;
height: 35px;
color: #FFF;
margin: 0 auto;
background: #1abc9c;
font-size: 18px;
text-align: center;
border: 1px solid #16a085;
border-radius: 4px;
}
button:hover {
background: #109177;
}
.divider {
margin: 15px 0;
border-bottom: 1px solid #8a97a0
}
.isError {
color: darkred;
}
h1, h2 {
margin: 20px auto 10px auto;
}
ul {
margin: 10px 0px;
}