-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
107 lines (91 loc) · 1.5 KB
/
styles.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
body {
background-image: url("inicio-fondo.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
background-size: cover;
color: white;
}
h1,
h2 {
text-align: center;
line-height: 3px;
}
h3,
h4 {
line-height: 0;
}
li {
margin-top: 5px;
}
a:hover {
color: red;
}
a,
a:visited {
color: white;
}
.navbar {
overflow: hidden;
background-color: green;
width: fit-content;
}
.navbar a {
float: left;
text-align: center;
padding: 0;
text-decoration: none;
}
.dropdown {
float: left;
overflow: hidden;
}
.dropdown .dropbtn {
background-color: green;
color: white;
padding: 5px;
font-size: 18px;
font-family: initial;
border: none;
margin: 0;
outline: none;
}
.navbar a:hover,
.dropdown:hover .dropbtn {
background-color: red;
}
.dropdown-content {
font-size: 18px;
display: none;
position: absolute;
z-index: 1;
}
.dropdown-content a {
float: none;
background-color: black;
color: white;
padding: 5px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown:hover .dropdown-content {
display: block;
}
#centerBox {
padding: 0;
background-color: rgba(0, 0, 0, 0.5);
}
#centerBox {
padding-top: 1px;
padding-left: 3px;
}
.footer {
position: relative;
padding-left: 3px;
padding-top: 0.5px;
left: 0;
bottom: 0;
width: 100%;
background-color: rgba(255, 0, 0, 0.5);
}