-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
91 lines (76 loc) · 1.34 KB
/
style.scss
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
body {
background: rgb(33, 39, 97);
max-width: 1000px;
margin: 0 auto;
}
header {
.titulo {
width: fit-content;
margin: 0 auto;
}
h1 {
font-size: 7rem;
margin: 0;
color: white;
text-align: center;
}
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;
// background-image:url(o.png), url(x.png);
// background-repeat: no-repeat;
// background-size: 15%;
// background-position: right bottom,left top;
}
.board{
display: grid;
background-color: #387af5;
max-width: 350px;
margin: 0 auto;
grid-template-columns: 1fr 1fr 1fr ;
grid-gap: 10px;
button{
aspect-ratio: 1;
background-color: rgb(33, 39, 97);
border: none;
}
button:hover{
background-color: #387af5;
}
.field{
font-size: 5em;
color: white;
}
}
.reset{
display: block;
margin: 0 auto;
margin-top: 20px;
color: rgb(33, 39, 97);
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; }
}