-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (50 loc) · 828 Bytes
/
style.css
File metadata and controls
63 lines (50 loc) · 828 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
/* Daniel Darvas, 2016 */
body {
background: #F3F3F3;
font-family: sans-serif;
font-size: 16px;
}
a {
font: Arial;
font-size: 16px;
color: #000;
}
.label {
width: 200px;
display: inline-block;
color: #777;
}
.textbox {
/* size */
height: 20px;
width: 200px;
padding: 5px;
font-size: 16px;
/* border */
border: 1px solid #DDDDDD;
border-radius: 5px;
/* color */
background-image: linear-gradient(to bottom, #EEEEEE, #FFFFFF);
}
.button {
/* size */
height: 30px;
width: 150px;
font-size: 16px;
/* border */
border: 1px solid #DDDDDD;
border-radius: 5px;
/* color */
background-image: linear-gradient(to bottom, #999, #BBB);
cursor: pointer;
}
.controls {
border: 1px solid #DDDDDD;
border-radius: 5px;
padding: 10px;
}
#imgSvg {
margin: auto;
display: block;
zoom: 1;
}