-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
129 lines (111 loc) · 2.24 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/* Estilo del encabezado */
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px 0;
display: flex;
justify-content: space-between;
/* Alinea el logotipo y el menú a los extremos */
align-items: center;
/* Alinea verticalmente el logotipo y el menú */
}
#logo {
text-align: center;
font-size: 36px;
}
h4 {
text-align: center;
}
/* Navegación */
nav {
margin-top: 20px;
text-align: center;
margin-bottom: 40px;
}
nav a {
text-decoration: none;
color: #333;
margin: 0 15px;
font-size: 18px;
transition: color 0.001s ease-in-out;
}
nav a:hover {
color: #ff4500;
border-bottom: 2px solid #ff4500;
}
nav a.highlight {
border-radius: 5px;
background-color: #ff4500;
color: #fff;
padding: 5px 15px;
}
nav a.highlight:hover {
background-color: #333;
color: #fff;
border-radius: 5px;
padding: 5px 15px;
border-radius: 45% black;
}
p {
text-align: center;
}
/* Formulario de registro */
form {
background-color: #fff;
padding: 20px;
border-radius: 5px;
margin: 20px auto;
max-width: 400px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
/* Centra el contenido del formulario */
}
/* Texto de botones centrados */
form p {
text-align: center;
}
input[type="text"],
input[type="email"],
input[type="password"] {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
}
button[type="submit"] {
background-color: #333;
color: #fff;
border: none;
padding: 10px 20px;
font-size: 18px;
cursor: pointer;
border-radius: 5px;
}
/* Pie de página */
footer {
background-color: #333;
color: #fff;
padding: 20px 0;
margin-top: 20px;
}
footer a {
text-decoration: none;
color: #fff;
margin: 0 15px;
}
/* Estilo de botón emoji */
.ligth-button {
font-size: 24px;
text-decoration: none;
color: #333;
}
/* Contacto y EN/ES en el Footer a la derecha */
footer div {
text-align: right;
margin-right: 1%;
}