-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (64 loc) · 1.25 KB
/
style.css
File metadata and controls
76 lines (64 loc) · 1.25 KB
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
* {
box-sizing: border-box;
padding: 0%;
margin: 0%;
}
html{
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
body {
background-color: grey;
}
header{
height: 550px;
background-image: url(https://fondosanimados.com/wp-content/uploads/2023/04/pixel-art-1.jpg);
background-size: cover;
text-align: center;
background-attachment: fixed;
}
.titulo_main{
background-color: rgba(0, 0, 0, 0.6);
color: #ffffff;
font-weight: bold;
line-height: 523px;
font-size: 50px;
}
/* Main navegation bar */
.main-nav{
margin: 0;
list-style: none;
padding-bottom: 0px;
background-color: rgba(0, 0, 0, 0.6);
text-align: center;
font-size: 15px;
}
.main-nav__item {
display: inline-block;
padding-left: 15px;
padding-right: 15px;
}
.main-nav__item a {
color:rgb(255, 255, 255);
text-decoration: none;
background-color: blue;
}
.main-nav__item a:hover {
color: rgb(214, 176, 81);
}
.main-nav__item a:active {
color: red;
}
/* Contenido de imágenes y lista en general */
.titulo {
color: aqua;
text-align: center;
list-style: none;
font-size: 20px;
}
.footer_photo {
color: aquamarine;
}
.inicio {
text-align: center;
color: antiquewhite;
}