-
Notifications
You must be signed in to change notification settings - Fork 0
/
dice.css
executable file
·110 lines (96 loc) · 1.27 KB
/
dice.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#container
{
border: 1px solid #ccc;
background: #eee;
padding: 20px;
margin: 20px;
}
div
{
clear:left;
}
div.result_wrapper
{
background: #fff;
border: 1px solid #ccc;
padding: 20px;
margin-bottom: 10px;
}
fieldset
{
float:left;
border:0;
padding:0;
margin-bottom: 20px;
}
ul
{
margin:0;
padding:0;
}
span
{
float:left;
display:block;
list-style:none;
padding: .5em .75em;
margin: 2px;
border: 1px solid #999;
color: #333;
-moz-border-radius: 2px;
}
span.total
{
background-color: #C2FFAF;
}
span.sub
{
font-size: 200%;
border-width: 12px;
}
span.grand
{
font-size: 150%;
}
span.operator
{
border-color: white;
}
#simulator
{
background: white;
border: 1px solid #ccc;
padding: 0;
-moz-border-radius: 4px;
}
#simulator input,
#simulator button
{
font-size: 150%;
float:left;
-moz-border-radius: 4px;
}
#txt_roll
{
border: 0;
padding: 14px;
}
button
{
margin: 10px;
}
h4
{
clear:left;
float:left;
color: #ccc;
font-weight: bold;
font-size: 200%;
margin:0;
padding:0 14px 0 0;
width: 75px;
text-align:right;
}
.d20 { background: #ffbb33; }
.buttonized { display: block; float: left; cursor: pointer; }
label { display:block; float:right; }