-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.css
95 lines (82 loc) · 1.54 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
/** We want the page to sit flush inside the browser window - that means no margins or padding. Also, use a nice-looking serif font. */
body {
padding: 0;
margin: 0;
font-family: Palatino Linotype, Bookman Antiqua, Palatino, serif;
font-size: 16px;
line-height: 20px;
text-align: center;
width: 95%;
height: 95%;
}
.slide {
width: 95%;
height: 95%;
display: none;
position: absolute;
margin: 0;
margin-left: 0.5%;
padding: 1% 2% 1% 2%;
}
input, select, button {font-family: Georgia, serif; font-size: 14px;}
button {
border: 1px solid #999;
border-top: 1px solid #e0e0e0;
border-left: 1px solid #e0e0e0;
margin: 10px;
padding-left: 5px;
padding-right: 5px;
height: 29px;
min-width: 70px;
align: center;
}
button:active {
border-left: 1px solid #c9c9c9;
border-top: 1px solid #c9c9c9;
background: none;
background-color: #c9c9c9;
}
button[disabled] {
background: url(zen-button.png);
border: 1px solid #999;
border-top: 1px solid #e0e0e0;
border-left: 1px solid #e0e0e0;
cursor: not-allowed;
}
.block-text {
width: 500px;
text-align: justify;
margin: 0 auto;
margin-bottom: 1em;
}
#legal {
margin: 0 auto;
margin-top: 1.5em;
font-size: 0.8em;
}
.txt {
text-align: center;
font-size: 15px;
}
.response {
text-align: center;
}
.progress{
float:right;
}
.progress span{
position:relative;
top: -6px;
}
.bar-wrapper{
height:20px;
width:200px;
border:1px solid #000000;
display:inline-block;
}
.bar{
position:relative;
height:100%;
width:0px;
background-color:#000000
}