-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.css
92 lines (84 loc) · 1.58 KB
/
page.css
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
/**
* The Boring CSS
* A CSS boilerplate for NeoBrutalism styled pages.
*
* @author: Rogerio Taques
* @license: MIT
*/
@charset "UTF-8";
html,
body {
width: 100vw;
margin: 0;
padding: 0;
}
.container {
display: block;
margin: 0 auto;
padding: 16px 24px;
}
.title {
margin-bottom: 8px;
}
.title + .subtitle {
margin-top: 0;
}
article {
padding: 8px 0;
}
article + article {
border-top: var(--s-border-width) solid var(--c-border);
}
section {
padding: 8px 0;
}
section + section {
border-top: var(--s-border-width-thin) solid var(--c-border);
}
.is-pulled-right {
float: right;
}
.is-hidden {
display: none;
}
[data-mode=dark] article + article,
[data-mode=dark] section + section {
border-top-color: var(--c-grey);
}
.github-badge {
transition: background-color 0.15s ease;
box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.25);
background-color: #333;
position: sticky;
top: 0;
z-index: 10;
}
.github-badge:hover {
background-color: greenyellow;
}
.github-badge:hover > a {
color: #333 !important;
text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}
.github-badge:hover > a::before {
content: unset;
}
.github-badge:hover > a img {
filter: brightness(120%);
}
.github-badge > a {
transition: color 0.15s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
color: #fff !important;
padding: 8px 16px !important;
border: 0 !important;
text-decoration: none;
}
.github-badge > a img {
width: 24px;
height: 24px;
}
/*# sourceMappingURL=page.css.map */