-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.css
More file actions
executable file
·114 lines (95 loc) · 1.83 KB
/
project.css
File metadata and controls
executable file
·114 lines (95 loc) · 1.83 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
.site-content {
background-color: var(--bg-primary);
border-radius: 10px;
padding: 5px;
}
.blogpost-container {
display: flex;
flex-direction: column;
padding: 5px;
}
.blogpost-header-container {
transition: all 1s ease-in;
}
.blogpost-header {
display: grid;
grid-template-columns: 5fr 1fr;
}
.expandable {
transition: max-height 0.5s ease-in-out, opacity 0.5s, margin 0.5s;
overflow: hidden;
}
.expandable.min {
margin: 0;
max-height: 0px;
opacity: 0;
}
.expandable.exp {
max-height: 100vh;
opacity: 100%;
}
.dropdown-item {
margin: 0 20% 5px;
text-align: left;
}
.dropdown-item>a {
color: #eee;
text-decoration: underline;
}
.blog-img {
max-width: 20rem;
border-radius: 10px;
border-width: 2px;
border-style: solid;
border-color: var(--bg-dark);
}
iframe {
max-width: 25rem;
border-width: 2px;
border-style: solid;
border-color: var(--bg-dark);
}
.desktop-only {
display: none;
}
.blog-body {
padding: 5px 10px;
}
pre > code {
text-align: left;
}
@supports(position: sticky) {
.blogpost-header-container {
position: -webkit-sticky;
position: -moz-sticky;
position: -ms-sticky;
position: -o-sticky;
position: sticky;
top: 0;
}
}
@media (min-width: 45em) {
.site-content {
width: 80%;
max-width: 60rem;
margin: auto;
}
.mobile-only {
display: none;
}
.blogpost-container {
display: grid;
grid-template-columns: minmax(100px, 2fr) minmax(0, 1fr);
}
.desktop-only {
display: block;
}
.overview-card {
position: -webkit-sticky;
position: -moz-sticky;
position: -ms-sticky;
position: -o-sticky;
position: sticky;
top: 10px;
}
}