-
Notifications
You must be signed in to change notification settings - Fork 8
/
estilo.css
67 lines (53 loc) · 919 Bytes
/
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
@font-face {
font-family: 'Kavoon';
src: url("../fonts/Kavoon/Kavoon-Regular.ttf") format('truetype');
}
*{
margin: 0;
padding: 0;
}
html{
font-size: 16px;
}
li{
list-style-type: none;
}
a{
color:#0f0f0f ;
text-decoration: none;
font-size: 24px;
}
body{
background-color: #D6D6D6;
font-family: 'Kavoon', sans-serif;
}
/*------header-------*/
header{
width: 90%;
margin: 3% 5%;
}
header nav ul {
display: flex;
justify-content: space-around;
}
header nav ul li ul{
display: none;
}
header nav ul li a:hover{
color: #5b6af1;
}
header nav ul li input {
padding: 5px;
border-radius: 5px;
}
header nav ul li i{
position: absolute;
top:40px;
right:270px;
}
#link_button{
border:1px solid #0f0f0f;
border-radius: 15px;
padding:10px;
font-size: 1.1em;
}