-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyles.css
More file actions
118 lines (102 loc) · 1.64 KB
/
Copy pathstyles.css
File metadata and controls
118 lines (102 loc) · 1.64 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
:root {
--border-color: rgb(41, 37, 36);
}
* {
font-family:
SF Pro,
ui-sans-serif,
system-ui,
sans-serif,
Apple Color Emoji,
Segoe UI Emoji,
Segoe UI Symbol,
Noto Color Emoji;
font-feature-settings: normal;
font-variation-settings: normal;
-moz-tab-size: 4;
tab-size: 4;
-webkit-text-size-adjust: 100%;
color: rgb(41 37 36);
}
body {
background-color: rgb(255, 240, 223);
}
#links > a {
transition: scale 0.05s ease-out;
&:hover {
scale: 1.1;
}
}
.line-holder {
position: relative;
width: min(300px, 100%);
height: 10px;
}
.smallLine {
position: absolute;
height: 10px;
width: 200%;
transform: translate(-25%) scale(0.5);
}
.smallLine1 {
background: linear-gradient(
45deg,
transparent,
transparent 49%,
var(--border-color) 49%,
transparent 51%
);
}
.smallLine2 {
background: linear-gradient(
-45deg,
transparent,
transparent 49%,
var(--border-color) 49%,
transparent 51%
);
}
.smallLine {
background-size: 20px 20px;
}
#back {
i {
transition: transform 0.1s ease-out;
margin-right: 4px;
}
&:hover {
i {
transform: translateX(-2px);
}
}
}
#blog-content {
gap: 10px;
display: flex;
flex-direction: column;
.line-holder {
margin: 30px auto;
width: 200px;
}
& > * {
opacity: 0;
}
h1 {
font-size: 1.5rem;
font-weight: 600;
}
p {
font-size: 1.1rem;
color: rgba(68, 40, 23, 0.6);
line-height: 1.5;
}
}
section[id^="blog-0"] {
opacity: 0;
pointer-events: none;
max-height: 0;
position: absolute;
visibility: hidden;
overflow: hidden;
max-width: 0;
}