-
Notifications
You must be signed in to change notification settings - Fork 0
/
scaffold.css
79 lines (66 loc) · 1012 Bytes
/
scaffold.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
#toc{
display: flex;
justify-content: center;
min-width: 15rem;
}
#toc>ul{
position: fixed;
}
#toc>ul>li{
list-style-type: none;
}
#toc>ul>li>a{
text-decoration: none;
transition: all .2s ease-in-out;
}
#toc>ul>li>a:hover{
transform: scale(1.5);
}
.dash-of-style{
display: flex;
}
code{
position: relative;
background-color: ghostwhite;
max-width: 45rem;
}
.clipboard{
position: absolute;
top: 0;
right: .5rem;
font-size: .75rem;
}
.clipboard:hover{
background-color: lightgray;
}
.clipboard:active{
color: white;
background-color: black;
}
code {
display: block;
font-size: .75rem;
margin-top: .5rem;
margin-bottom: 2rem;
padding: 1rem;
background-color: ghostwhite;
}
button {
background-color: transparent;
color: grey;
border-style: none;
border-width: 0;
}
/*
button:hover {
background-color: Gainsboro;
}
button:focus {
background-color: black;
color: GhostWhite;
}*/
@media (max-width: 890px) {
#toc{
display: none;
}
}