-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilo.css
172 lines (140 loc) · 2.57 KB
/
estilo.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
165
166
167
168
169
170
171
172
/*
*
* @author Jamilton Damasceno
* @version 0.1
*/
/* ========================= layout ======================== */
html,
body,
.capa {
height: 100%;
overflow-x: hidden;
}
body {
background: url('imagens/capa.png'),
url('imagens/ruido.png;'),
linear-gradient(50deg, #ff4169, #7c26f8);
background-attachment: fixed;
font-family: Helvetica, Arial, sans-serif;
}
/* -- Barra de navegação -- */
.img-logo {
height: 40px;
width: 132px;
display: block;
background: url('imagens/spotify.svg') no-repeat;
background-size: contain;
color: transparent;
}
nav.navbar-transparente {
padding: 15px 0px;
background: rgba(0, 0, 0, 0.6);
border: none;
}
.navbar-brand {
padding: 5px 15px;
}
.divisor {
width: 1px;
height: 16px;
background: white;
margin: 16px 10px;
}
.navbar-inverse .navbar-nav > li > a, #rodape .nav a {
color: white;
}
.navbar-inverse .navbar-nav > li > a:hover,#rodape .nav a:hover {
color: #9bf0e1;
background: none;
}
/* -- Imagem de Capa --*/
.capa {
display: table;
width: 100%;
}
.texto-capa {
text-align: center;
color: white;
display: table-cell;
vertical-align: middle;
}
/* -- Botoes --*/
.btn-custom{
color: white;
border-radius: 500px;
padding: 10px 35px;
margin: 0px 15px;
text-transform: uppercase;
transition: 0.4s, color 0.4s;
}
.btn-roxo{
background: #7c25f8;
}
.btn-roxo:hover{
background: #6207e3;
color: white;
}
.btn-branco{
border: 2px solid white;
}
.btn-branco:hover{
color: black;
background: white;
}
/* -- Secao Servicos --*/
#servicos{
background: white;
padding-top: 20px;
padding-bottom: 20px;
}
.albuns{
padding-top: 10px;
padding-bottom: 10px;
}
/* -- Secao Recursos --*/
#recursos{
padding-top: 20px;
padding-bottom: 20px;
color: white;
}
.rotacionar{
transform: rotate(30deg);
padding-left: 80px;
}
/* -- Rodape --*/
footer{
background: black;
padding: 50px 0px 20px 0px;
position: relative;
}
/* ========================= Tipografia ======================== */
h1 {
font-size: 100px;
font-weight: 900;
letter-spacing: -7px;
margin-bottom: 50px;
}
h2{
font-size: 50px;
font-weight: 700;
letter-spacing: -0.04em;
}
h3{
font-size: 35px;
font-weight: 700;
letter-spacing: -0.04em;
}
#rodape h4{
color: #919496;
font-size: 12px;
text-transform: uppercase;
}
.item-rede-social>li{
float: right;
}
#servicos h2, #servicos h3{
color: #7c25f8;
}
#recursos h3{
color: #9bf0e1;
}