-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
85 lines (74 loc) · 1.22 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
body {
background: #212761;
max-width: 1000px;
margin: 0 auto;
}
header .titulo {
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content;
margin: 0 auto;
}
header h1 {
font-size: 7rem;
margin: 0;
color: white;
text-align: center;
}
header hr {
height: 4px;
background-color: #387af5;
border: none;
width: 50%;
margin-top: -10px;
}
h2 {
text-align: center;
color: #a6aaaf;
margin-top: 4%;
font-size: 2em;
}
.boardbackground {
max-width: 550px;
margin: auto;
}
.board {
display: -ms-grid;
display: grid;
background-color: #387af5;
max-width: 350px;
margin: 0 auto;
-ms-grid-columns: 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 10px;
}
.board button {
aspect-ratio: 1;
background-color: #212761;
border: none;
}
.board button:hover {
background-color: #387af5;
}
.board .field {
font-size: 5em;
color: white;
}
.reset {
display: block;
margin: 0 auto;
margin-top: 20px;
color: #212761;
background: yellow;
border: none;
font-size: 2em;
padding: 10px 30px;
font-weight: 600;
border-radius: 8px;
}
@media screen and (max-width: 900px) {
body h1 {
font-size: 5rem;
}
}
/*# sourceMappingURL=style.css.map */