-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
111 lines (89 loc) · 1.66 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
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
.game{
max-width: 1327px;
margin: auto;
display: flex;
flex-direction: column;
align-items: center;
height: 100vh;
gap: 5%;
}
.main-div{
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items:center;
width: 100vw;
height: 100vh;
border: solid 1px black;
}
.menu{
width: 35vw;
display: none;
}
.options{
position: absolute;
display:flex;
justify-content: center;
}
.bnt-menu{
width: 15vw;
border-radius: 0 0 70% 70%;
background-color: #eb2ca1ee;
border: dotted 2px red;
text-align: center;
}
.options:hover .menu{
width: 15vw;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 10%;
position: absolute;
border: solid 1px black;
border-bottom-left-radius: 10%;
border-bottom-right-radius: 10%;
background-color: #eb2ca1ee;
position: absolute;
margin-top: 20px;
padding: 5px;
}
button{
width: 4vw;
}
button:hover{
border: solid 2px white;
}
.option{
margin: 8px;
}
.title{
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 35px;
padding: 20px;
}
.grid{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#display{
text-align: center;
background: none;
border: none;
-webkit-text-stroke-width: 0.px; /* largura da borda */
-webkit-text-stroke-color: white; /* cor da borda */
-webkit-text-fill-color: black;
}
.div-child{
border:solid 1px black;
}