-
Notifications
You must be signed in to change notification settings - Fork 4
/
styles.css
121 lines (120 loc) · 2.22 KB
/
styles.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
.button {
border-radius: 10px ;
background-color: #f84375 ;
padding: 8px 16px;
font-family: Verdana, Arial;
font-size: 18px;
cursor:pointer;
transition-duration: 0.4s;
color: white;
}
.button:hover {
background-color: #e2a76f;
color: white;
}
.bigtext {
color: #f84375 ;
font-size: 28px;
font-family: Verdana, Arial;
}
.resultbox {
width: 650px;
height: 280px;
background-color: lightgray;
}
.input {
font-size: 18px;
font-family: Verdana, Arial;
color: blue;
background-color: lightgray;
padding: 4px 4px;
}
.textarea {
font-size: 18px;
font-family: Verdana, Arial;
background-color: lightgray;
color: blue;
resize: none;
}
.label {
font-size: 18px;
color: white;
font-family: Verdana, Arial, sans-serif;
}
body {
background-color: black;
background-image: url(ndbackimg.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: absolute;
}
table, th, td {
border: 1px solid cyan;
border-collapse: collapse;
background-color: gray;
font-family: Verdana, Arial, sans-serif;
}
th, td {
padding: 15px;
}
p {
font-size: 18px;
color: white;
font-family: Verdana, Arial, sans-serif;
}
#text {
position: absolute;
top: 200px;
left: 50%;
margin: 0px 0px 0px -150px;
font-size: 18px;
font-family: Verdana, Arial, sans-serif;
text-align: center;
width: 300px;
}
#barbox_a {
position: absolute;
top: 230px;
left: 50%;
margin: 0px 0px 0px -160px;
width: 304px;
height: 24px;
background-color: black;
}
.per {
position: absolute;
top: 230px;
font-family: Verdana, Arial, sans-serif;
font-size: 18px;
color: cyan;
left: 50%;
margin: 1px 0px 0px 150px;
background-color: black;
}
.bar {
position: absolute;
top: 232px;
left: 50%;
margin: 0px 0px 0px -158px;
width: 0px;
height: 20px;
background-color: #0099FF;
}
.blank {
background-color: grey;
width: 300px;
}
select {
// A reset of styles, including removing the default dropdown arrow
appearance: none;
// Additional resets for further consistency
background-color: transparent;
border: none;
padding: 0 1em 0 0;
margin: 0;
color: blue;
font-family: Verdana, Arial, sans-serif;
font-size: 20px;
cursor: pointer;
line-height: inherit;
}