-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
66 lines (60 loc) · 1006 Bytes
/
style.css
File metadata and controls
66 lines (60 loc) · 1006 Bytes
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
/*CSS Reset*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Variaveis*/
:root {
--RosaClaro: #f890e2;
--RoxoMedio: #c949e9;
}
/*Layout*/
.container,main {
display: flex;
flex-direction: column;
align-items: center;
}
html {
font-size: 16px;
}
body {
font-family: "Merriweather", serif;
background-color: var(--RosaClaro);
}
/*Cabeçalho*/
header {
text-align: center;
}
header img {
width: 100px;
height: 100px;
border-radius: 50%;
margin: 50px;
}
header h1 {
font-size: 1.25rem;
font-weight: 600;
margin: 10px 0px 10px 0px;
}
header h2 {
font-size: 1rem;
font-weight: 400;
max-width: 210px;
margin-bottom: 30px;
}
/*Principal*/
main a {
background-color: var(--RoxoMedio);
text-align: center;
margin-bottom: 15px;
text-decoration: none;
width: 360px;
height: 60px;
border-radius: 20px;
padding-top: 15px;
}
/*Rodapé*/
footer img {
margin: 0px 10px 0px 10px;
}