-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
144 lines (127 loc) · 2.43 KB
/
Copy pathstyle.css
File metadata and controls
144 lines (127 loc) · 2.43 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
:root {
--alert-color: #d1603dff;
--font-color: #ddb967ff;
--hov-color: rgb(221, 175, 69);
--scs-color: #d0e37fff;
}
@font-face {
font-family: 'Nordic';
src: url('./fonts/Nordic/Nordic Alternative Regular.ttf') format('TrueType');
font-style: normal;
font-weight: normal;
}
body {
margin: 0;
}
.navbar {
font-family: 'Courier New', Courier, monospace;
font-weight: 300;
overflow: hidden;
}
.nav-list {
margin: 0;
padding: 0;
display: block;
text-align: center;
}
.nav-list li {
list-style-type: none;
display: inline-block;
}
.nav-list a {
display: block;
color: var(--bg-color);
text-align: center;
padding: 10px 12px;
text-decoration: none;
transition: text-shadow 0.2s ease;
}
.nav-list a:hover {
box-shadow: 0 0 30px #bbb;
}
main {
flex: 1;
}
.footerMain {
position: relative;
display:flex;
justify-content: center;
text-align: center;
bottom: 0;
width: 100%;
color: var(--bg-color);
}
footer i {
font-size: 20px;
margin: 10px;
}
footer a {
text-decoration: none;
color: inherit;
}
footer a:hover {
box-shadow: 0 0 30px #bbb;
}
.logo {
/* font-family: 'Courier New', Courier, monospace; */
font-family: "Nordic";
text-align: center;
margin: 50px auto 50px;
font-size: 3rem;
max-width: 7ch;
font-weight: 600;
text-decoration: none;
color: #bbb;
text-shadow: 0 0 10px #bbb;
}
.aboutme-container {
font-size: 1rem;
color:var(--bg-color);
border: 2px solid #bbb;
border-radius: 8px;
margin-bottom: 30px;
padding: 20px;
margin-top: 30px;
margin-inline: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
text-align: center;
}
Section{
/* margin: 50px auto 50px; */
margin:auto;
font-family:'Courier New', Courier, monospace;
max-width: 800px;
}
.cardmargins {
padding: 20px; /* o cualquier valor que desees */
}
.lista {
align-items:flex-start;
display: grid;
gap: 1rem;
justify-content: center;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.artic {
height: 200px;
display: flex;
flex-direction: column;
padding: 16px;
/* margin-inline: 16px; */
border: 2px solid #bbb;
border-radius: 8px;
box-shadow: 0 0 10px #bbb;
transition: transform 0.8s ease, background-color 0.8s ease;
}
.artic p {
color: #221d23;
margin: 0;
width: 100%;
padding: 2px;
font-size: 0.8rem;
word-wrap: break-word; /* Permitir el salto de línea en palabras largas */
}
.artic:hover {
transform: scale(1.1);
background-color: #eee;
}