-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
79 lines (73 loc) · 1.4 KB
/
main.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
.area-wrapper {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
h1{
text-align: center;
font-size: 62px;
color: rgb(1, 18, 255);
}
#area {
border: black 2px solid;
width: 600px;
height: 600px;
background-color: rgb(173, 251, 253);
display: flex;
flex-wrap: wrap;
}
.box {
width: 200px;
height: 200px;
border: 1px solid black;
box-sizing: border-box;
font-size: 84px;
color: brown;
display: flex;
justify-content: center;
align-items: center;
}
#modal-result-wrapper {
width: 100%;
height: 100%;
top: 0;
left: 0;
display: none;
}
#overlay {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background-color: rgba(0,0,0,0.8);
}
#modal-window {
width: 250px;
height: 150px;
border: 1px solid black;
background-color: white;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
font-size: 24px;
flex-flow: column;
justify-content: space-between;
align-items: center;
}
#btn-close {
width: 250px;
height: 50px;
background-color: tomato;
color: teal;
text-align: center;
cursor: pointer;
padding-top: 25px;
}
#content{
padding-top: 25px;
}