-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscreen.css
73 lines (64 loc) · 1.36 KB
/
screen.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
.diceroller-container {
padding: 0px 10px 5px 15px;
margin: 0px 0px 10px;
border: 1px solid #eee;
overflow: hidden;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-khtml-border-radius: 4px;
border-radius: 4px;
background-color: #fafafa;
}
.diceroller-container input, .diceroller-container textarea {
width:6em;
font-size:11px;
}
.diceroller-title {
font-family: Verdana, Arial, Helvetica, sans-serif;
display: block;
font-size: 1em;
font-weight: bold;
color: #444;
}
.diceroller-option-description {
font-family: Arial, sans-serif;
font-size: 11px;
color: #828282;
display: block;
padding: 5px 0px;
font-style: italic;
line-height: 1.5em;
}
.diceroller-init {
-moz-border-radius: 6px 6px 0 0;
-webkit-border-top-right-radius: 6px;
-webkit-border-top-left-radius: 6px;
-khtml-border-top-right-radius: 6px;
-khtml-border-top-left-radius: 6px;
border-top-right-radius: 6px;
border-top-left-radius: 6px;
background: #DFDFDF url("../images/gray-grad.png") repeat-x left top;
text-shadow: white 0 1px 0;
margin: 0;
}
#roll {
width: 30%;
}
#latest {
width: 60%;
}
.diceroller-element {
float: left;
margin-right: 3em;
}
.diceroller-latest td, .diceroller-latest th {
border-bottom: solid 1px #ccc;
width: 18%;
text-align: center;
}
.c9-nobr {
white-space: pre;
white-space-collapsing: collapse;
word-wrap: break-word;
text-wrap: none;
}