-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
117 lines (117 loc) · 2.48 KB
/
Copy pathstyles.css
File metadata and controls
117 lines (117 loc) · 2.48 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
body, div, dl, dt, dd, ol, h1, h2, h3, h4, h5, h6, form, input, textarea, th, td, a
{
margin: 0;
padding: 0;
border-top-width: 0;
border-right-width: 0;
border-bottom-width: 0;
border-left-width: 0;
color: rgb(255 255 255);
background-color: rgb(26 26 26);
}
a {
text-decoration: none;
}
#page {
height:100vh;
}
.logo {
height:1.25rem;
align-self:center;
}
.logoContainer {
margin-right:1rem;
}
.dark {
background-color: rgb(40 40 40);
}
.heading {
padding-left: 1.25rem;
padding-right: 1.25rem;
height: 50px;
background-color: rgb(40 40 40);
display: flex;
align-items:center;
justify-content: space-between;
}
.code {
white-space: pre-wrap;
padding-left:1.25rem;
padding-right:1.25rem;
font-size: 13px;
font-family: Consolas, "Courier New", monospace;
line-height:18px;
}
.q-content {
display: flex;
justify-content: space-between;
padding:8px;
flex-grow: 1;
max-height:calc(100% - 66px);
}
.content-box {
width: calc(50% - 4px);
overflow-y:scroll;
}
#content {
padding-left: 1.25rem;
padding-right: 1.25rem;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
font-size:14px;
}
.dark pre {
background-color: #ffffff12;
color: #eff1f6bf;
border-radius:0.5rem;
}
pre {
white-space: pre-wrap;
padding: 1rem;
font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
font-size:0.875rem;
}
#charTyped{
margin-right: 1rem;
}
strong {
color:rgb(255 255 255);
}
#title {
font-size:1.125rem;
font-weight:600;
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}
.title {
margin-top:1.25rem;
padding-left: 1.25rem;
padding-right:1.25rem;
}
.storeTitle {
text-align:center;
font-size:1.125rem;
font-weight:600;
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}
.left-heading {
display:flex;
align-items:center;
height: 50px;
}
#store {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
right: 0;
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;
}
.close {
position: absolute;
top: 0;
left: 25px;
font-size: 36px;
margin-right: 50px;
}