-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
115 lines (96 loc) · 1.8 KB
/
styles.css
File metadata and controls
115 lines (96 loc) · 1.8 KB
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
109
110
111
112
113
114
115
:root{
--branco: #FFFFFF;
--cinza: #AEB2AE;
--fundo: #000000;
--fonte-principal: 'Inter';
--troca: #47d605;
--clique: purple;
}
body{
background-color: var(--fundo);
color: var(--branco);
font-family: var(--fonte-principal);
font-size: 20px;
font-weight: 400;
}
*{
margin: 0;
padding: 0;
}
.principal{
background-image: url("alunos.png");
background-repeat: no-repeat;
background-size: contain;
align-items: center;
text-align: center;
}
.container{
height: 100vh;
display: grid;
grid-template-columns: 28% 72%;
}
.insta_botao{
background-color: var(--branco);
border-radius: 5px;
padding: 1em;
color: var(--fundo);
display: block;
text-decoration: none;
margin: 0 0 0 3em;
}
.insta_botao:hover{
background-color: var(--troca);
color: var(--branco);
}
.insta_botao:active{
background-color: var(--clique);
}
.imagem{
margin: 0 0 0 3em;
}
.titulo{
margin: 0 0 0 1em;
}
.imagem_monitores{
width: 50%;
margin: 2em 0 0 2em;
}
.monitores{
align-items: center;
margin: 0 2em 0 0;
}
.descricao_titulos{
font-weight: 700;
font-size: 64px;
color: var(--branco);
}
.descricao_texto{
font-weight: 700;
font-size: 32px;
color: var(--cinza);
}
.rodape{
font-weight: 700;
font-size: 24px;
color: var(--cinza);
text-align: right;
}
.texto_rodape{
margin: 3em 1em 1em 0;
font-size: 24px;
}
.lista{
list-style-type: none;
text-align: center;
font-size: 20px;
}
.lista1:hover{
color: var(--troca);
}
.lista1:active{
color: var(--clique);
}
.descricao_monitores{
text-align: center;
margin: 5em 0 0 0;
}