-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
88 lines (73 loc) · 1.53 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
80
81
82
83
84
85
86
87
body {
background-color: #dbd8d8;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.mainDisplay {
width: 100vw;
height: 100vh;
display:flex;
flex-direction: column;
}
.Agrupa{
display:flex;
flex-direction: row;
justify-content:center ;
}
.BlocoDeJogo {
background: rgba(5, 5, 5, 0.667);
box-shadow: 0px 10px 4px rgba(0, 0, 0, 0.25);
border-radius: 20px;
/*grid-column: 2/3; */
grid-row: 2/3;
justify-content: center;
/*corrige o problema ao aumentar e diminuir a largura do ecrã*/
min-width:600px;
max-width:100%;
align-items: center;
min-height: 500px;
max-height: 100%;
}
.botoes {
width: 90%;
height: 90%;
margin-left: 5%;
margin-right: 5%;
margin-top: 5%;
margin-bottom: 5%;
align-items: center;
}
.botoes>button {
position:inherit;
width: 32%;
height: 32%;
margin-top: 1%;
max-width: 32%;
max-height: 32%;
border: none;
justify-content: center;
background-color:#dbd8d8;
vertical-align: top;
font-size: 100px;
}
.botoes>button:hover {
width: 32%;
height: 32%;
margin-top: 1%;
border: none;
justify-content: center;
background-color: aliceblue;
}
.titulo {
grid-column: 2/3;
grid-row: 1/3;
text-align: center;
height:50px;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font: bold;
font-size: 5rem;
}
.scores {
grid-column: 3/3;
grid-row: 2/3;
margin-left: 100px;
}