-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·124 lines (100 loc) · 1.97 KB
/
Copy pathstyle.css
File metadata and controls
executable file
·124 lines (100 loc) · 1.97 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
html {
background-color:#121212;
color:#b9b9b9;
font-family: Arial, Helvetica, sans-serif;
font-size: large;
line-height: 1.5;
}
body {
padding: min(4em, 5%);
padding-top: 0;
}
header {
border-bottom: 2px solid #999;
text-align: center;
padding: 0px 0px 20px;
margin: auto;
width: (960px, 70%);
}
nav {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
#moon {
padding-right: 4px;
}
@media (max-width: 420px) {
#moon {display: none}
nav {
align-items: space-evenly;
justify-content: space-evenly;
}
}
article {
border-bottom: 2px solid #c4baba;
padding-bottom: 20px;
margin-bottom: 20px;
}
footer {
text-align: center;
margin: auto;
clear: both;
width: min(1000px, 90%);
}
div ul {
list-style-type: none;
margin: 0;
padding: 0;
}
h1, h2, h3, h4, h5, h6 {
margin-bottom: 10px;
}
a {text-decoration: none}
a:link {color: #147960;}
a:visited {color: #115051;}
nav > div > a:visited {color: #147960;}
footer > a:visited {color: #147960;}
a:hover {color: #009285; text-decoration-line: underline;}
a:visited:hover {color: #009285; text-decoration-line: underline;}
a:active {color: #009285; text-decoration-line: underline;}
.col {
column-width: 24rem;
column-gap: 2rem;
column-fill: balance;
}
.res {
display: flex;
flex-wrap: wrap;
align-items: space-between;
justify-content: space-between;
}
.res > div {
width: 14em;
}
.lit {
display: flex;
flex-wrap: wrap;
align-items: space-between;
justify-content: space-between;
}
.lit > div {
width: 40em;
margin-right: 1rem;
hyphens: auto;
text-align: justify;
text-align-last: justify;
}
.lit > div h3{
text-align: left;
text-align-last: left;
}
.lit > div img {
width: min(300px, 33vw);
aspect-ratio: 1 / 1.41421356;
float: left;
object-fit: cover;
margin-right: 2rem;
margin-bottom: 1rem;
}