-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (87 loc) · 1.82 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
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@200;700&family=Roboto:wght@300;500;900&display=swap');/*
titulo - font-family: 'Roboto', sans-serif;
corpo - font-family: 'Roboto Slab', serif;
*/
*{
margin: auto;
padding: 0;
}
html, body {margin: 0; height: 100%; overflow: hidden}
body{
background: #dee5e5;
font-family: 'Roboto Slab', serif;
}
#titulo-principal{
font-family: 'Roboto', sans-serif;
font-size: 2.2em;
margin: 15px 5px
}
#texto-jogadores{
margin-top: 0.000001em;
}
.texto-descricao{
margin-top: 0.1em;
font-size: 1.2em;
}
.container{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.container-quadrado{
width: 380px;
height: 380px;
border-radius: 15px;
background: #25272D;
color:white;
margin-top: 1.2em;
display: grid;
place-content: center;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr;
gap: 0px 0px;
grid-template-areas:
". . ."
". . ."
". . .";
margin-bottom: 0.8em;
}
.bn{
background-color: #5E6472;
color:white;
font-size: 15px;
padding: 1em;
width: 70px;
height: 70px;
border-radius: 15px;
border: 1px solid gray;
text-align: center;
margin: auto;
}
.bn:hover{
background: #39393A;
cursor: pointer;
}
#but {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-sizing: border-box;
width: 95px;
height: 40px;
border: 1px solid #352c36;
margin-top: 1em;
border-radius: 4px;
font-family: 'Roboto Slab', serif;
background-color: #2c2f36;
color: white;
font-size: 20px;
cursor: pointer;
}
#print{
margin-left: 175%;
margin-bottom: 1em;
color:#39393A;
}