-
Notifications
You must be signed in to change notification settings - Fork 0
/
fases.css
76 lines (67 loc) · 1.34 KB
/
fases.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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300&family=VT323&display=swap');
body{
font-family: 'VT323', monospace;
background-color: whitesmoke;
}
header{
height:100px;
}
.bloco{
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
align-content: space-around;
}
.icon{
background-color: pink;
display: flex;
justify-content: left;
align-items: center;
width: 300px;
height:300px;
margin: 20px;
padding: 20px;
border-radius:25%;
}
.descrição{
background-color: pink;
display: flex;
justify-content: left;
align-items: center;
font-size: 20px;
width: 800px;
height:300px;
margin: 20px;
padding: 20px;
border-radius:4%;
}
img{
width: 300px;
height: 300px;
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
align-content: space-between;
border-radius:25%;
}
.botao{
width: 100%;
height:100px;
font-size: 30px;
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
text-align: center;
font-family: 'VT323', monospace;
border: none;
cursor:pointer;
padding:6px 24px;
background-color: whitesmoke;
}
footer{
text-align: center;
margin: 80px;
}