generated from chrismwilliams/astro-theme-cactus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
78 lines (67 loc) · 1.17 KB
/
styles.css
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
body {
font-family: sans-serif;
margin: 0;
padding: 0px;
display: flex;
flex-direction: column;
align-items: center;
text-align: left;
line-height: 1.5;
background: #0f0f0f;
min-height: 100vh;
}
header {
background: #0f0f0f;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 0px;
width: 40%;
min-width: 300px;
}
nav ul {
list-style: none;
padding: 0;
margin: 0rem 0 0 0;
display: flex;
gap: 1rem;
}
nav ul li {
margin: 1px;
}
nav ul a {
text-decoration: none;
}
/* main */
.front-page {
background: #0f0f0f;
/* padding: 15px; */
/* margin: 1rem; */
min-width: 300px;
width: 40%;
word-wrap: break-word;
flex-grow: 1;
}
footer {
background: #0f0f0f;
/* padding: 15px; */
/* margin: 1rem; */
margin-top: auto;
min-width: 300px;
width: 40%;
}
article {
margin-bottom: 2rem;
}
a {
color: yellow;
text-decoration: underline dotted;
}
p, h1, h2, h3, h4, h5, h6 {
color: rgb(230, 230, 230);
}
::selection {
background-color: rgba(255, 255, 0, 0.85);
color: #0f0f0f;
}