-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
132 lines (106 loc) · 2.86 KB
/
styles.css
File metadata and controls
132 lines (106 loc) · 2.86 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
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
130
@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Faster+One&family=Londrina+Shadow&family=Russo+One&family=Slackey&family=Wallpoet&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Faster+One&family=Jersey+10+Charted&family=Londrina+Shadow&family=Russo+One&family=Slackey&family=Wallpoet&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Faster+One&family=Jersey+10+Charted&family=Londrina+Shadow&family=Press+Start+2P&family=Russo+One&family=Slackey&family=Wallpoet&display=swap');
/* Estilos generales */
* {
box-sizing: border-box;
padding: 0;
font-family: 'Arial', sans-serif;
}
.text-center{
font-family: "Press Start 2P", system-ui;
}
body {
background-color: #52182d91;
color: #fffbfb;
display: flex;
justify-content: center;
align-items: center;
font-weight: 300;
line-height: 1.4;
min-height: 100vh;
}
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: -1;
background: var(--color-darkblue);
background-image: linear-gradient(115deg, rgba(231, 39, 110, 0.8), rgba(107, 37, 82, 0.7)), url(https://wallpaperwaifu.com/wp-content/uploads/2021/09/retro-arcade-room-thumb-1500x844.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.header {
padding: 0 0.625rem;
margin-bottom: 25px;
}
label {
display: flex;
align-items: center;
font-size: 20px;
margin-bottom: 0.5rem;
}
/* seccion formulario */
form {
padding: 2.5rem;
}
form{
background: rgb(48, 28, 46);
border-radius: 15px;
}
.form-group {
margin: 0 auto 1.25rem auto;
padding: 8px;
}
.form-group p{
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 23px;
}
.form-group label{
font-family: "Press Start 2P", system-ui;
font-size: 15px;
}
.form-control {
display: block;
width: 100%;
height: 30px;
padding:5px;
color: #495057;
background-color: #fff;
border: 1px solid #ced4da;
border-radius: 10px;
}
.input-textarea {
min-height: 120px;
width: 100%;
padding: 0.600rem;
resize: vertical;
}
.submit-button {
display: block;
width: 100%;
padding: 20px;
background: rgb(152, 23, 101);
color: inherit;
border-radius: 10px;
cursor: pointer;
font-family: "Press Start 2P", system-ui;
font-size: larger;
}
/* Estilo para el footer */
footer {
background-color: #311a2d; /* Fondo oscuro */
padding: 20px 0;
text-align: center;
border-top: 2px solid rgba(255, 255, 255, 0.2); /* Línea de separación */
}
.footer-content p {
margin: 0;
line-height: 1.6;
font-family: "Press Start 2P", system-ui;
font-size: 15px;
}