-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
70 lines (69 loc) · 1.22 KB
/
index.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 url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
html{
background-color: black;
font-family:"Roboto" , serif;
}
h1{
font-size: 40px;
margin-bottom: 10px;
margin-top: 15px;
text-decoration:none;
}
#instagram{
font-size: 18px;
text-decoration: underline;
}
p{
margin-bottom: 45px;
}
#conteiner{
text-align: center;
background-color: darkslategrey;
border-radius: 30px;
width: 370px;
height: 100vh;
position: absolute;
left: 50%;
transform: translate(-50%);
box-sizing: border-box;
}
ul, a{
list-style: none;
text-decoration: none;
color: black;
font-size: 25px;
}
ul{
margin-top: 30px;
}
li{
margin-bottom: 30px;
width: 300px;
height: 40px;
background-color: dimgrey;
border-radius: 5px;
transition: filter .5s;
box-shadow: 2px 3px 5px rgba(0, 0, 0, 1)
}
img{
margin-top: 25px;
top: 40px;
border: 3px solid black;
border-radius: 50%;
height: 150px;
width: 150px;
padding: 3px;
}
footer{
position: fixed;
bottom: 0;
left: 80px;
margin-bottom: 10px;
}
li:hover{
filter: brightness(1.5);
}
#footer{
font-size: 16px;
text-decoration: underline;
}