-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
155 lines (148 loc) · 3.74 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
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Raleway:wght@400;600;700;900&display=swap');
*{
font-family: 'Raleway', sans-serif;
margin: 0;
box-sizing: border-box; /* O valor border-box faz com que a altura e a largura do elemento incluam o padding e a border, em vez de serem adicionados a eles, ou seja, se adicionarmos por exemplo height: 600px e padding: 60px não ira ficar 660px*/
}
body {
background-color: black;
}
/*PRIMEIRA PARTE DO SITE*/
.banner {
height: 600px;
background-image: linear-gradient(rgba(0, 0, 0, .6), rgba(49, 168, 221, .2), rgba(0, 0, 0, .6)), url(assets/images/banner.png);
border-bottom: 1px solid #33A8DB80;
padding: 60px;
}
.banner .banner-content{
width: 600px;
text-align: center;
margin: auto;
}
.logo{
width: 260px;
height: 260px;
margin: auto;
background-color: rgba(0, 0, 0, .2);
border-radius: 50%;
padding: 22px 50px 0 10px;
margin-bottom: 16px;
}
.banner h1{
color: transparent;
background: -webkit-linear-gradient(#33A8DB, #1472B7);
background-clip: text;
-webkit-background-clip: text;
text-transform: uppercase;
font-weight: 900;
font-size: 2.5rem;
margin-bottom: 16px;
}
.banner p{
color: white;
font-size: 1.25rem;
margin-bottom: 24px;
}
button{
background-color: transparent;
color: #33A8DB;
padding: 16px 32px;
font-size: 1rem;
font-weight: 700;
letter-spacing: 4px;
text-transform: uppercase;
border-image: linear-gradient(#33A8DB, #1472B7); /* cria um ponto nas bordas*/
border-image-slice: 10;/* Faz os pontos ficar linhas*/
}
/*FIM DA PRIMEIRA PARTE DO SITE*/
/*SEGUNDA PARTE DO SITE*/
section{
margin: 100px auto;
}
section #course-content{
width: 800px;
}
#course-content h2 {
color: #33A8DB;
text-align: center;
font-size: 2rem;
text-transform: uppercase;
letter-spacing: 4px;
margin-bottom: 16px;
}
#course-content p {
color: white;
width: 800px;
text-align: center;
margin: auto;
margin-bottom: 30px;
}
.modules-list .module {
text-align: center;
margin: 0 auto 24px
}
.module {
background-color: #252525;
border: 1px solid #33A8DB;
padding: 16px;
border-radius: 100px;
width: 530px;
text-align: center;
box-shadow: inset -5px 6px 8px rgba(0, 0, 0, .7);
color: white;
}
.module span{
color: #33A8DB;
}
/*FIM DA SEGUNDA PARTE DO SITE*/
/*TERCEIRA PARTE DO SITE*/
#transform-world{
height: 560px;
background-image: url(assets/images/woman-code.png);
background-size: cover;
background-attachment: fixed;
padding: 200px;
border-bottom: 1px solid #33A8DB80;
border-top: 1px solid #33A8DB80;
}
#transform-world p {
color: white;
font-weight: 900;
text-shadow: 3px 2px #33A8DB;
font-size: 2.5rem;
width: 245px;
text-transform: lowercase;
}
/*FIM DA TERCEIRA PARTE DO SITE*/
/*QUARTA PARTE DO SITE*/
#professional-challenges h2{
font-size: 2rem;
color: #33A8DB;
font-weight: bold;
letter-spacing: 4px;
text-transform: uppercase;
margin-bottom: 24px;
}
#professional-challenges{
width: 800px;
text-align: center;
}
#professional-challenges p{
margin-top: 16px;
color: white;
}
/*FIM QUARTA PARTE DO SITE*/
/*QUINTA PARTE DO SITE*/
footer{
border-top: 1px solid #33A8DB80;
padding: 60px 0;
text-align: center;
background-image: linear-gradient(rgba(50, 168, 219, .0), rgba(50, 168, 219, .2));
color: white;
}
footer a{
text-decoration: none;
color: #33A8DB;
font-weight: bold;
}
/*FIM DA QUINTA PARTE DO SITE*/