-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (50 loc) · 904 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
html {
height: 100%;
}
body {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
display: flex;
background-color: rgb(66, 250, 189);
}
button {
background-color: aqua;
font-size: 20px;
text-decoration: none;
border-radius: 8px;
border: 2px solid rgb(0, 60, 255);
margin: 8px;
padding: 5px;
}
.grid-container {
display: inline-grid;
grid-template-columns: 1fr 1fr 1fr;
background-color: rgb(66, 250, 189);
padding: 10px;
gap: 10px;
width: 400px;
height: 400px;
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 20px;
}
.buttons-container, #result-text, #final-evaluation {
grid-column-start: 1;
grid-column-end: 4;
}
.grid-container > div {
background-color: rgb(66, 250, 189);
text-align: center;
padding: 20px;
}
#result-text {
height: 40px;
}
#final-evaluation {
height: 40px;
}