-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
164 lines (150 loc) · 2.99 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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
}
/* Partes do Header: */
header{
display: flex;
flex-direction: row;
background-color: rgba(71, 71, 71, 0.116);
width: 100%;
height: 100px;
padding: 10px;
align-items: center;
justify-content:space-around;
}
header img{
width: 130px;
filter: invert(100%);
}
header li, header li a{
margin: 9px;
color: white;
display: inline-block;
list-style-type: none;
text-decoration: none;
transition: .8s;
}
header li, header li a:hover{
color: #c2bf21;
}
/* Sections e Body */
body{
background-color: #131313;
color: white;
}
/* Section 01 */
.principal{
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
height: 100%;
}
.texts{
margin-left: 300px;
}
.texts h1{
font-size: 3rem;
line-height: 60px;
}
.texts h1 span{
color: rgb(214, 211, 25);
}
.texts h3{
margin-top: 10px;
font-size: 1.5rem;
font-weight: 200;
}
.image img{
margin-top: 100px;
margin-bottom: -4px;
width: 80%;
min-width: 327px;
}
/* Section 02 */
.section_2{
background-color: aliceblue;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #131313;
gap: 40px;
}
.section_2 h1{
margin-top: 100px;
text-align: center;
max-width: 50%;
font-size: 40px;
}
.section_2 h1 span{
color: rgb(148, 20, 20);
}
.section_2 img{
width: 700px;
border-radius: 20px;
}
.section_2 p{
margin-bottom: 100px;
font-size: 20px;
max-width: 60%;
text-align: center;
}
/* Section 03 */
.section_3{
height: 100vh;
background-image: url(imgs/background.jpg);
display: flex;
align-items: center;
justify-content: space-around;
color: #131313;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
}
.section_3 p{
background-color: aliceblue;
box-shadow: 10px 7px 16px 0px rgba(0, 0, 0, 0.349);
border-radius: 8px;
max-width: 300px;
font-size: 25px;
padding: 15px;
}
/* Section 04 */
.section_4{
display: flex;
align-items: center;
}
.section_4 p{
margin-left: 60px;
max-width: 900px;
font-size: 1.5em;
line-height: 35px;
}
.section_4 img {
margin-top: 300px;
margin-bottom: 300px;
width: 35%;
border-radius: 10px;
margin-left: 100px;
}
footer{
width: 100%;
height: 70px;
display: flex;
background-color: rgb(236, 236, 236);
align-items: center;
color: #131313;
justify-content: space-evenly;
}
footer a, footer span{
opacity: .75;
}
footer #git{
margin-bottom: 3px;
width: 40px;
}