-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathstyle.scss
More file actions
93 lines (82 loc) · 1.66 KB
/
Copy pathstyle.scss
File metadata and controls
93 lines (82 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
/* Log setup */
#log {
margin-bottom: 0;
border: 0 solid silver;
background-color: #242424;
color: #ccc;
color: rgb(255 255 255 / 60%);
line-height: 21px;
height: 27px;
overflow-y: hidden;
#scrollicon {
position: fixed;
right: 10px;
top: 113px;
height: 27px;
width: 27px;
background-image: url("images/icons/scroll.svg");
background-repeat: no-repeat;
background-size: 100%;
opacity: 0.0;
transition: all ease 0.3s;
@media only screen and (width <= 600px) {
top: 150px;
right: -40px;
}
}
&.expanded {
overflow-y: auto;
box-shadow: inset 0 0 15px #000;
height: 111px;
#scrollicon {
height: 110px;
margin-top: 10px;
margin-right: 20px;
width: 110px;
opacity: 0.15;
background-size: 80%;
box-shadow: inset 0 0 5px #000;
transition: all ease 0.3s;
}
}
.wrapper {
padding: 5px; /* was 5 */
padding-left: 10px;
padding-bottom: 4px;
user-select: text;
position: relative;
bottom: 0;
@media only screen and (width <= 600px) {
.date {
display: none;
}
}
}
a {
font-weight: regular;
color: var(--color-tertiary);
}
a:hover {
text-decoration: underline;
}
.logswitch {
position: absolute;
right: 20px;
z-index: 10;
height: 27px;
display: flex;
align-items: center;
gap: 12px;
button {
background: transparent;
color: #656565 !important;
transition: all 0.3s;
cursor: pointer;
}
button:hover {
color: #959595 !important;
text-decoration: none !important;
transition: all 0.3s;
}
}
}