forked from pakitochus/pakitochus.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
107 lines (86 loc) · 1.66 KB
/
styles.css
File metadata and controls
107 lines (86 loc) · 1.66 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
/* css styles */
:root {
--primary-orange: #E06E53;
--secondary-orange: #B8573E;
--bs-navbar-hover-color: #E06E53;
}
.navbar-brand{
font-weight: bold;
}
.card .listing-author{
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 500px;
}
.quarto-listing-table .listing-image img{
max-width: 80px;
object-fit: contain;
}
.quarto-title-banner{
background-blend-mode: multiply;
}
.fancylist ul {
list-style: none;
padding-left: 0;
margin: 0
}
.fancylist ul li{
position: relative;
padding: .75rem 0 .75rem 2rem;
margin-bottom: .75rem;
transition: all .3s ease
}
.fancylist ul li::before{
content: "▸";
position: absolute;
left: .5rem;
color: rgba(51,51,51,.5);
font-size: 1rem;
transition: all .3s ease
}
.fancylist ul li:hover{
padding-left: 2.25rem;
color: #333
}
.fancylist ul li:hover::before {
color: #333;
left: .25rem
}
.fancylist ul li p{
margin: 0
}
.fancylist ul li p strong {
color: #333;
font-weight: 600
}
.fancylist section.level2 ul li p em{
color: rgba(51,51,51,.7)
}
.fancylist ul li{
background-color: rgba(51,51,51,.02);
border-left: 2px solid rgba(51,51,51,.15);
border-radius: 0 6px 6px 0;
padding: 1rem 1rem 1rem 2rem
}
.fancylist ul li:hover {
background-color: rgba(51,51,51,.05);
border-left-color: rgba(51,51,51,.3)
}
.fancylist ul li strong:last-of-type {
color: rgba(51,51,51,.7);
font-size: .95em
}
td > span, td > a{
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
}
td .listing-author{
/*white-space: nowrap;*/
max-width: 200px;
}
td > span.listing-container-title{
font-style: italic;
}