-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (89 loc) · 1.43 KB
/
Copy pathstyle.css
File metadata and controls
101 lines (89 loc) · 1.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
* {
word-break: keep-all;
margin: 0;
padding: 0;
box-sizing: border-box;
font: -apple-system-body;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/* Text Elements */
h1,h2 {
margin: 2rem;
}
h1 {
font-size: 1.7em;
margin-bottom: 20px;
}
p {
line-height:1.8;
margin-bottom: 10px;
}
a {
color: inherit;
}
/* Typography */
/* Content Elements */
body {
background: #fff;
color: #000;
text-align: center;
}
footer {
margin:2rem;
color: #8a8a8a;
}
img {
width: 100%;
max-width: 600px;
height:auto;
}
.imageContainer {
position:relative;
}
.grid-container {
display: grid;
grid-template-columns: auto auto auto;
padding: 10px;
}
.grid-item {
padding: 4px;
text-align: center;
}
/* Content Elements */
/* NitPicky Stylings */
.poem {
line-height: 2;
}
.suffix {
font-size:0.9rem;
}
#daumRoughmapContainer1597651152951 {
width:80%;
max-width:640px;
align:center;
}
#parents {
margin:2rem;
line-height:2.5;
}
#date {
margin:2rem;
line-height:2;
}
#address {
color:#8a8a8a
}
/* NitPicky Stylings */
/* Dark Mode */
@media (prefers-color-scheme: dark) {
body {
background-color: #222;
color: #ddd;
}
}
/* Dynamic layout */
@media(max-width: 600px) {
.wrapper {
padding: 40px 20px;
}
}