-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (62 loc) · 1.2 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
*, body {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
background-color: rgb(15, 15, 15);
color: white;
}
.HeaderText{
text-align: center;
margin: 50px 5px;
text-decoration: underline;
text-transform: capitalize;
text-decoration-color: rgb(255, 215, 0);
}
.Boxes{
display: grid;
width: 100%;
height: calc(50vh - 50px);
place-items: center;
}
.box{
display: grid;
grid-template-columns: auto auto;
gap: 20px;
}
.input-box{
font-size: 16px;
font-size: max(16px, 1em);
font-family: inherit;
padding: 0.50em 0.5em;
background-color: #fff;
border: 2px solid var(--input-border);
border-radius: 4px;
color: black;
}
.select-box{
font-size: 16px;
font-size: max(16px,1em);
font-family: inherit;
padding: 0.50em 0.5em;
appearance: unset;
}
.ans-text{
width: 100%;
display: block;
grid-column-start: 1;
grid-column-end: 3;
font-weight: bold;
text-align: right;
}
.get-ans{
background: rgb(255, 215, 0);
border: none;
color: black;
width: 100px;
font-weight: bold;
padding: 10px 6px;
}
#ANS{
color: rgb(255, 215, 0);
}