-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
87 lines (75 loc) · 1.38 KB
/
styles.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
:root{
--vermelhoForte:#b71c1c;
--rosa:#c2185b;
--rosaForte:#ad1457;
--roxo:#6a1b9a;
--vermelhoClaro:#d32f2f;
--vermelho:#c62828;
--branco: w
}
*{
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
background-color: black;
height: 100%;
}
header {
display: flex;
background-color: var(--vermelhoClaro);
color: white;
width: 100%;
justify-content: center;
}
nav.header_nav{
display: flex;
justify-content: center;
}
nav button {
margin: 0 10px;
padding: 10px 15px;
cursor: pointer;
color: white;
background-color: var(--vermelhoClaro);
border: none;
border-radius: 5px;
}
nav button:hover {
background-color: var(--rosa);
}
main{
display: flex;
justify-content: center;
background-image: url(./resource/tela_tentativa.gif) ;
background-position: center;
background-size: contain;
background-repeat: no-repeat;
background-color: black;
height: 50rem;
width: 100%;
}
.content-section {
border: 1px solid var(--vermelhoForte);
border-radius: 5px;
margin-top: 14%;
height: 25rem;
width: 50%;
font-family: "Ubuntu", sans-serif;
font-weight: 500;
display: flex;
flex-direction: row;
/* background-color: var(--vermelho); */
}
.class_div1_about{
color: #6a1b9a;
}
#about{
display: flex;
flex-direction: row;
}
#experiences{
}
#projects{
}