-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpty.css
More file actions
58 lines (58 loc) · 1.02 KB
/
pty.css
File metadata and controls
58 lines (58 loc) · 1.02 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
@import url("./assets/common.css");
body {
background-color: #6940ff;
overflow: hidden;
}
#main {
background-color: #000;
color: #fff;
height: calc(100vh - 16px);
box-sizing: border-box;
overflow: auto;
scrollbar-color: #6940ff;
font-family: 'Sublima', Helvetica, Arial, sans-serif;
font-weight: 300;
padding-left: 32px;
padding-right: 32px;
padding-top: 120px;
}
#main::-webkit-scrollbar {
/* background-color: #000; */
width: 8px;
height: 20px;
}
#main::-webkit-scrollbar-track {
background-color: #000;
}
#main::-webkit-scrollbar-thumb {
background-color: #6940ff;
}
#logo-box {
position: absolute;
top: 8px;
left: 8px;
background-color: #000;
padding-top: 16px;
padding-left: 32px;
padding-bottom: 16px;
width: calc(100vw - 24px);
box-sizing: border-box;
}
#logo-box > span {
color: transparent;
user-select: none;
}
#logo-box > a {
color: #6940ff;
}
#social-box {
display: flex;
flex-direction: row;
flex-wrap: wrap;
font-size: 2em;
font-weight: 700;
}
#social-box > a {
padding-right: 32px;
color: #fff;
}