-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
82 lines (69 loc) · 1.42 KB
/
styles.css
File metadata and controls
82 lines (69 loc) · 1.42 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
/* Estilo base compatible con modo claro y oscuro */
body {
font-family: 'Segoe UI', sans-serif;
line-height: 1.6;
background-color: var(--background);
color: var(--text);
margin: 0;
padding: 0;
}
:root {
--background: #ffffff;
--text: #111111;
--highlight: #00bfff;
--card-bg: #f4f4f4;
--code-bg: #eeeeee;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0e1525;
--text: #eaeaea;
--highlight: #00bfff;
--card-bg: #1e273a;
--code-bg: #1a1a1a;
}
}
.inicio-simple {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 80vh;
padding: 1rem;
text-align: center;
background-color: var(--card-bg);
border-radius: 10px;
margin: 2rem auto;
max-width: 700px;
box-shadow: 0 0 8px rgba(0,0,0,0.1);
}
.inicio-simple h1 {
font-size: 2.5rem;
color: var(--highlight);
}
.inicio-simple p {
font-size: 1.1rem;
margin: 1rem 0;
}
.boton-simple {
background-color: var(--highlight);
color: #000;
padding: 0.5rem 1.5rem;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
transition: background-color 0.2s ease;
}
.boton-simple:hover {
background-color: #009acb;
}
/* Código y bloques de terminal */
pre, code {
background-color: var(--code-bg);
color: var(--text);
border-radius: 5px;
padding: 0.4rem 0.6rem;
font-family: 'Courier New', monospace;
overflow-x: auto;
display: block;
}