-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
154 lines (138 loc) · 2.15 KB
/
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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
.bar.idle,.border.idle {
width: 80%;
}
.bar {
height: 25px;
}
.run {
width: 25px;
position:relative;
}
.highlight {
transform: scale(1.2,1.2);
-ms-transform: scale(1.2,1.2); /* IE 9 */
-webkit-transform: scale(1.2,1.2); /* Safari and Chrome */
outline: none;
border-color: #9ecaed;
box-shadow: 0 0 10px #9ecaed;
z-index: 1;
}
#processList {
float: left;
width: 50%;
padding:20px 0px 0px 20px;
}
#progressWrap {
float: left;
padding:20px 0px 0px 0px;
/*CSS3 FTW!*/
transform: rotate(30deg);
-ms-transform: rotate(30deg); /* IE 9 */
-webkit-transform: rotate(30deg); /* Safari and Chrome */
}
#progressBar,#ruler {
float: left;
}
#progressBar {
margin-left:50px
}
.ruler.unit {
border-bottom: 1pt solid black;
border-left: 2pt solid black;
padding-left: 7px;
}
.name {
float: left;
margin: 3px 0px 0px 3px;
}
.triangle-border.left {
left: 20px;
}
.bubble {
position: relative;
width: 145px;
height: 35px;
padding: 0px;
background: #FFFFFF;
border: #36706C solid 3px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
.bubble:after {
content: "";
position: absolute;
top: 8px;
left: -15px;
border-style: solid;
border-width: 9px 15px 9px 0;
border-color: transparent #FFFFFF;
display: block;
width: 0;
z-index: 1;
}
.bubble:before {
content: "";
position: absolute;
top: 6px;
left: -20px;
border-style: solid;
border-width: 11px 17px 11px 0;
border-color: transparent #36706C;
display: block;
width: 0;
z-index: 0;
}
.bubble {
left: 43px;
bottom: -26px;
position: absolute;
padding: 4px 0px 0px 8px;
}
body
{
font-family:Gill Sans MT;
padding:10px 100px 10px 200px;
}
fieldset
{
border: solid 1px #000;
padding:10px;
display:block;
clear:both;
margin:25px 20px 0px 0px;
}
input.inputRow
{
float:left;
clear:left;
display:block;
margin:10px;
}
legend
{
padding:0px 10px;
background:black;
color:#FFF;
}
input{
margin:1px 20px 1px 1px;
}
h1
{
font-size:200%;
}
p
{
line-height:50%;
}
#param{
margin: 30px 0px 10px 0px
}
button, input.add{
background:black;
color:white;
}
#buttons{
margin: 0px 0px 30px 0px
}