-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathstyle.scss
107 lines (103 loc) · 1.87 KB
/
style.scss
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
$text:#FFFFFF;
$highlighttext:#00bbff;
$black:#262626;
$darkgrey:#3A3A3A;
$grey:#bcbcbc;
$highlight:#373838;
$selftext:#83A598;
$cream:#00bbff;
$lightblue:#87afaf;
$green:#afaf00;
$red:#d75f5f;
$textred:#E3A786;
$orange:#dd6f48;
$pink:#d787af;
$gold:#ff8700;
$yellow:#ffaf00;
$darkgreen:#878700;
$turquoise:#87af87;
$blue:#42aaf4;
$darkblue:#005f87;
$purple:#875f87;
$lighterblue:#83a598;
body {
background-color:$darkgrey;
color:$text;
font-family: 'Fira Mono', Monospace;
margin:0;
overflow-x:hidden;
a {
color:inherit;
&:hover{
color:$highlighttext;
background-color:$highlight;
}
}
.stream {
margin-top:8px;
}
.line {
margin:0;
padding:0;
display:flex;
flex-direction:row;
margin:0 4px;
padding-top:2px;
width:calc(100% - 12px);
p {
display:inline-block;
margin:0;
padding:0;
}
.name {
max-width:80px;
min-width:80px;
text-align:right;
padding-right:6px;
}
}
.editline {
background-color:$black;
padding: 2px 4px 0px 4px;
width:calc(100%);
.edit {
min-width:calc(100% - 200px);
outline:none;
}
margin:0;
margin-bottom:8px;
.time {
user-select: none;
cursor:default;
}
}
}
.whitet {
color:$highlighttext;
}
.redt {
color:$red;
}
.important {
color:$textred;
}
.bluet {
color:$blue;
}
.greent {
color:$green;
}
.selft {
color:$selftext;
}
::selection {
color:$highlighttext;
background: $highlight;
}
::-webkit-scrollbar{background-color:$darkgrey;width:10px;height:10px;}
::-webkit-scrollbar-thumb{background-color:$grey;}
::-webkit-scrollbar-corner{background-color:$darkgrey;}
::-webkit-resizer{background-color:$darkgrey;}
.phjspenheader:hover {
background-color: #D44C2A
}