-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
108 lines (73 loc) · 1.77 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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
/* Forma de pegar fonte pelo CSS*/
:root{
--font-family: 'Roboto', sans-serif;
--bg-color: #000000;
--primary-color: #42C920;
--primary-color-light: #87db73;
}
body {
/*background-color: var(--bg-color);*/
background-image: url(img/fundo.svg);
color: var(--primary-color);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
margin: 0;
font-family: var(--font-family);
}
strong{
font-weight: 700;
color: var(--primary-color-light);
}
h1{
font-weight: 700;
font-size: 5em;
}
h2{
font-size: 6em;
}
h3{
font-size: 2em;
margin-top: 0.5em;
font-weight: 400;
}
.mensagem{
font-size: 1.5em;
margin: 2em;
}
.box{
border: 2px solid var(--primary-color);
display: inline-block; /*Assim a borda se limita na linha*/
font-size: 4em;
padding: 0.2em;
margin: 0.2em;
}
.btn-jogar{
padding: 10px 20px;
border: none;
margin: 1em;
font-size: 1em;
color: #fff;
border-radius: 7px;
letter-spacing: 4px;
font-weight: 700;
text-transform: uppercase;
transition: 0.5s all;
transition-property: box-shadow all;
}
.btn-jogar{
background: var(--primary-color);
box-shadow: 0 0 25px var(--primary-color);
}
.btn-jogar:hover{
background: var(--primary-color-light);
box-shadow: 0 0 5px var(--primary-color),
0 0 25px var(--primary-color),
0 0 50px var(--primary-color),
0 0 100px var(--primary-color);
scale: 1.1;
}