-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
119 lines (105 loc) · 1.64 KB
/
styles.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
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
118
119
:root {
--code-font: 'SFMono-Regular', 'Consolas', 'Liberation Mono', 'Menlo',
'Courier', monospace;
}
body {
margin: 0;
padding: 0;
font-family: sans-serif;
}
.wrapper {
position: fixed !important;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.loading {
opacity: 0.5;
}
.wrapper__active {
background-color: #78c2d3;
}
.wrapper__reject {
background-color: #e03756;
}
.logo {
width: 100%;
height: 100%;
}
.message {
position: absolute;
text-align: center;
top: 0;
left: 50%;
color: #414242;
font-size: 0.85em;
font-family: var(--code-font);
width: 70vw;
border: 0;
background: transparent;
height: 70px;
padding: 1em;
outline: 0;
transform: translateX(-50%);
}
.output {
height: 30vh;
position: fixed;
bottom: 0;
left: 0;
right: 0;
transform: translateY(100%);
font-family: var(--code-font);
background-color: rgba(255, 255, 255, 0.9);
transition: 0.3s;
z-index: 10;
overflow: hidden;
}
.code {
height: 100%;
tab-size: 4;
overflow: auto;
line-height: 1.5;
color: #414242;
margin: 0;
}
.code code {
white-space: pre-wrap;
}
.show {
transform: translateY(0);
padding: 35px 30px 20px;
border-top: 1px solid #f5f5f7;
box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}
.controls {
display: flex;
position: absolute;
top: 10px;
right: 10px;
}
.button {
border: 0;
background: none;
cursor: pointer;
outline: 0;
}
.github_logo {
width: 25px;
height: 25px;
position: fixed;
top: 10px;
right: 10px;
cursor: pointer;
z-index: 20;
}
.error {
position: absolute;
top: 7px;
text-align: center;
font-size: 0.7em;
right: 0;
left: 0;
color: #e03756;
}