-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
167 lines (150 loc) · 2.89 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
155
156
157
158
159
160
161
162
163
164
165
166
167
*{
margin: 0px;
padding: 0px;
}
body{
background-color: rgb(148, 139, 139);
}
div#container {
width: 80%;
background: #faf8f9;
margin: auto;
display: flow-root;
}
h2{
text-align: center;
padding: 8px;
background: #f3ebe0;
font-family: cursive;
color: #3b7720;
font-family: serif;
/* font-weight: bolder; */
font-style: oblique;
font-size: 25px;
}
#main{
margin: 10px;
/* background-color: rgb(245, 235, 245); */
width: 60%;
border-radius: 15px;
float: left;
}
#section{
/* color: blue;
background-color: blueviolet; */
padding: 5px;
font-size: 17px;
/* text-align: center; */
text-align: right;
margin-right: 180px;
}
label{
font-size: 20px;
padding-bottom: 5px;
padding-bottom: 2px;
font-weight: bolder;
cursor: pointer;
border-bottom: 2px solid rgb(146, 255, 144);
}
input[type="text"]{
padding: 6px;
max-width: 50px;
font-size: 20px;
font-style: italic;
}
#submit{
padding: 8px;
border-style: none;
color: white;
background-color: #0c920c;
border-radius: 5px;
width: 96%;
margin: 0% 2% 5px 2%;
font-size: 17px;
cursor: pointer;
border: 1px solid white;
/* margin-top: -1opx; */
/* margin-bottom: 10px; */
}
#submit:hover{
background-color: #0cb30c;
color: white;
box-shadow: -2px 0px 4px green;
}
#showButton{
border-style: none;
/* padding: 8px; */
padding: 9px 52px;
margin: 8px;
border-style: none;
background-color: rgb(156, 5, 89);
border-radius: 5px;
color: white;
font-size: 17px;
cursor: pointer;
}
#showButton:hover{
color: rgb(255, 255, 255);
background-color: rgb(187, 4, 105);
box-shadow: 2px 2px 4px red;
}
.messageBox{
background-color: #e2330c;
color: linen;
padding: 10px;
font-size: 18px;
border-radius: 5px;
text-align: center;
}
div#display {
/* min-height: 100%; */
background: #70ff00;
text-align: center;
padding: 20px;
float: right;
width: 30%;
border-radius: 15px;
margin: 10px 5px auto auto;
/* height: 100%; */
border: 2px solid tomato;
}
h3 {
font-size: 31px;
/* font-weight: 800; */
font-family: sans-serif;
color: #ef2507;
}
div#box {
padding: 11px;
/* background: #128a08; */
background: #021001;
color: white;
font-size: 18px;
border-radius: 22px;
margin-top: 25px;
}
span#rating {
padding: 11px;
background: #021001;
border-radius: 50px;
font-size: 38px;
/* width: 100px; */
color: white;
}
button#reset {
/* text-align: center; */
padding: 8px;
color: white;
background: #ff3e3e;
border: 1px solid tomato;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
float: right;
margin: 327px 20px auto auto;
}
button#reset:hover{
color: #f30000;
background: white;
border: 1px solid red;
}