-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (61 loc) · 1.23 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
@import "https://raw.githubusercontent.com/Rocketseat/bootcamp-launchbase-desafios-02/master/desafios/favicon.ico";
@import "https://fonts.googleapis.com/css?family=Roboto&display=swap";
*{
margin:0;
padding:0;
border:0;
}
body {
background: #180b1a;
font-family: 'Roboto', sans-serif;
}
header{
padding: 30px;
border:5px solid rgb(0, 0, 0);
background:rgb(108, 54, 160);
}
.links {
text-align: center;
}
.links a{
color: rgb(0, 0, 0);
font-size: 25px;
margin: 0 50px;
text-decoration: none;
}
.links a:hover{
color:white;
transition: color 700ms;
}
#wrapper {
text-align: center;
padding: 50px;
}
#wrapper img {
border-radius: 300px; /*Arredonda a borda da imagem*/
border: 7px solid #430985;
height: 300px;
}
#wrapper h1 {
font-size: 50px;
color: rgb(130, 81, 194);
padding: 10px;
}
#wrapper h2 {
margin-top: 5px;
font-size: 23px;
color: rgba(122, 51, 168, 0.849);
opacity: 0.6;
}
#wrapper ul {
margin-top: 30px;
font-size: 20px;
line-height: 25px;
color: rgba(141, 34, 141, 0.514);
list-style-type: none;
}
#redessociais a {
/*border-bottom: 2px solid purple;*/
padding-bottom: 20px;
font-size: 20px;
}