-
Notifications
You must be signed in to change notification settings - Fork 47
/
style.css
111 lines (95 loc) · 1.56 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
* {
font-family: "Helvetica Neue", Helvetica;
font-size: 15px;
font-variant: normal;
padding: 0;
margin: 0;
}
pre {
color: #31325f;
font-family: "Consolas", monospace;
font-weight: 200;
}
html {
height: 100%;
}
body {
background: #e6ebf1;
min-height: 100%;
padding: 30px;
}
form {
width: 480px;
margin: 20px 0;
}
iframe {
width: 100%;
height: 100%;
}
.group {
background: white;
box-shadow: 0 7px 14px 0 rgba(49, 49, 93, 0.1),
0 3px 6px 0 rgba(0, 0, 0, 0.08);
border-radius: 4px;
margin-bottom: 20px;
}
label {
position: relative;
color: #8898aa;
font-weight: 300;
height: 40px;
line-height: 40px;
margin-left: 20px;
display: flex;
flex-direction: row;
}
.group label:not(:last-child) {
border-bottom: 1px solid #f0f5fa;
}
label > span {
width: 120px;
text-align: right;
margin-right: 30px;
}
.field {
background: transparent;
font-weight: 300;
border: 0;
color: #31325f;
outline: none;
flex: 1;
padding-right: 10px;
padding-left: 10px;
cursor: text;
}
.field::-webkit-input-placeholder {
color: #cfd7e0;
}
.field::-moz-placeholder {
color: #cfd7e0;
}
button {
display: block;
background: #35c2a1;
color: white;
box-shadow: 0 7px 14px 0 rgba(49, 49, 93, 0.1),
0 3px 6px 0 rgba(0, 0, 0, 0.08);
border-radius: 4px;
border: 0;
margin-top: 20px;
font-size: 15px;
font-weight: 400;
width: 100%;
height: 40px;
line-height: 38px;
outline: none;
}
button:focus {
background: #35c2a1;
}
button:active {
background: #35c2a1;
}
.response-container {
max-width: 200px;
}