-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyles.css
More file actions
54 lines (49 loc) · 1.12 KB
/
styles.css
File metadata and controls
54 lines (49 loc) · 1.12 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
body {
font-family: "Source Sans Pro", "Helvetica Neue", Arial, Helvetica, sans-serif;
line-height: 1.42857143;
color: #333;
}
#form-header {
margin-bottom: 20px;
}
#output {
margin-top: 20px;
}
.usa-textarea,
#json-result {
display: block;
width: 100%;
height: auto;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
border: 1px solid #ccc;
border-radius: 4px;
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
.usa-button {
display: inline-block;
margin-bottom: 0;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
touch-action: manipulation;
cursor: pointer;
border: 1px solid transparent;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
border-radius: 4px;
user-select: none;
}
label {
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
font-weight: 600;
}