forked from nsf-mediacomp/spherly-webclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
48 lines (48 loc) · 762 Bytes
/
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
html,body{
font-family: sans-serif
}
button {
margin: 5px;
padding: 10px;
border-radius: 4px;
border: 1px solid #ddd;
font-size: large;
background-color: #eee;
color: #000;
cursor: pointer;
}
button.primary {
/* Can't use "text-align: start" due to IE. */
text-align: left;
border: 1px solid #dd4b39;
background-color: #dd4b39;
color: #fff;
}
.icon21 {
height: 21px;
width: 21px;
background-image: url(content/icons.png);
}
.run {
background-position: -63px -21px;
}
table {
border-collapse: collapse;
}
table, th, td {
border: 1px solid black;
}
th{
font-weight: bold;
font-size: 18px;
text-align: center;
background: #dddddd;
padding: 3px;
}
td{
padding: 10px;
vertical-align: top;
}
li{
margin-bottom: 1px;
}