-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
102 lines (88 loc) · 1.65 KB
/
styles.css
File metadata and controls
102 lines (88 loc) · 1.65 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
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
width: 100%;
height: 100vh;
}
main {
display: flex;
flex-direction: column;
height: 100vh;
align-items: center;
background-color: rgb(46, 46, 46);
color: #fff;
gap: 20px;
font-family: Helvetica, sans-serif;
overflow: auto;
}
main section div {
padding: 20px;
}
a {
color: #e6e4e4;
font-size: 24px;
}
a:hover {
background-color: #e6e4e4;
color: #000;
transition-delay: .1s;
}
ul li {
list-style-type: none;
}
header {
width: 100%;
text-align: center;
display: flex;
text-align: center;
align-items: center;
justify-content: center;
gap: 20px;
padding:30px;
}
img {
width: 100px;
border-radius: 5%;
object-fit: cover;
height: 100px;
}
#text {
text-align: center;
gap: 30px;
display: flex;
flex-direction: column;
align-items: center;
}
#gifdance {
text-align: center;
width: 150px;
height: auto;
}
footer {
padding: 20px;
width: 100%;
text-align: center;
/* Quitamos el position: fixed para que no tape nada */
margin-top: auto;
}
.share-tech-mono-regular {
font-family: "Share Tech Mono", monospace;
font-weight: 400;
font-style: normal;
}
/* Agrupa los párrafos informativos para que no se separen tanto */
#text p {
margin-bottom: -15px; /* Reduce el efecto del gap de 30px del padre */
}
/* El último párrafo antes del GIF necesita recuperar espacio */
#text p:last-of-type {
margin-bottom: 10px;
}
#gifdance {
width: 150px;
height: auto;
margin-top: 10px; /* Un poco de aire sobre Homura */
}