forked from AbdulHameedAnofi/R.E.C
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (60 loc) · 1001 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
* {
margin: 0;
padding: 0;
}
body {
background-color: rgb(181, 218, 181);
color: rgb(82, 185, 82);
}
table {
width: 100%;
height: 100px;
border-spacing: 0 15px;
border-collapse: separate;
/* height: 30px; */
}
td {
padding: 5px;
}
tr.other>td {
padding-bottom: 5em;
}
p {
color: rgb(4, 121, 23);
}
label {
color: rgb(40, 63, 5);
}
.progress {
position: relative;
width: 210px;
height: 13px;
background: #9cbab4;
border-radius: 5px;
border: thick;
border-width: 2px;
border-style: solid;
border-color: greenyellow;
overflow: hidden;
}
.progress_fill {
height: 100%;
background: #009579;
}
.progress_text {
position: absolute;
top: 50%;
right: 5px;
transform: translateY(-50%);
font: bold 14 'Quicksand', sans-serif;
color: #ffff;
}
h1 {
border: thick;
border-width: 2px;
border-style: solid;
border-color: greenyellow;
padding: 10px;
background-color: #147765;
text-align: center;
}