-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (52 loc) · 1001 Bytes
/
style.css
File metadata and controls
63 lines (52 loc) · 1001 Bytes
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
body{
background-color: #1d2127;
color:#fff;
font-family: "Overpass Mono",monospace;
padding: 0;
margin: 0;
}
h1{
margin: 0 0 0 8px;
padding-top: 8px;
}
.bar {
background-color: #464b55;
padding: 10px 40px; /* Un poco más de aire a los lados */
display: flex;
justify-content: space-between; /* Esto separa el logo de los links */
align-items: center;
}
.brand {
display: flex;
align-items: center;
}
.logo{
width: 50px;
height: 50px;
}
.nav-links a {
color: #fff;
text-decoration: none;
margin-left: 20px;
font-weight: bold;
transition: color 0.3s; /* Animación suave */
}
.nav-links a:hover {
color: #61afef; /* El azul que ya usas en tus posts */
}
.container{
margin-top: 30px;
padding: 0 60px 0 60px;
}
.post{
background-color: #282c34;
margin-bottom: 15px;
padding: 5px 20px 5px 20px;
border-radius: 12px;
}
.post h4{
color:#98c379
}
.post span{
color:#61afef;
}