-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyles.css
More file actions
60 lines (50 loc) · 910 Bytes
/
styles.css
File metadata and controls
60 lines (50 loc) · 910 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
body {
font-family: 'Open Sans', sans-serif;
font-size: 16px;
}
.container-main {
width: 640px;
margin: 0 auto;
}
.container-main p {
text-align: center;
}
h1 {
font-weight: 300;
text-align: center;
}
#dataTable {
width: 100%;
}
table, th, td {
border: none;
}
table th, td {
border-bottom: 1px dotted #cccccc;
padding: 5px 0px;
}
td.label {
font-weight: 600;
text-align: right;
}
#dataTable input[type='text'] {
font-family: 'Open Sans', sans-serif;
font-size: 16px;
border: 1px solid #cccccc;
border-radius: 5px;
padding: 5px;
}
#dataTable input[type='button'] {
font-family: 'Open Sans', sans-serif;
font-size: 16px;
border: 1px solid #4CAF50;
border-radius: 5px;
background-color: #4CAF50;
color: #ffffff;
font-weight: 600;
padding: 5px;
cursor: pointer;
}
span {
font-weight: 400;
}