-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (116 loc) · 1.64 KB
/
Copy pathstyle.css
File metadata and controls
116 lines (116 loc) · 1.64 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
body {
padding:0;
margin:0;
box-sizing:border-box;
}
input,button,textarea{
background:none;
outline:none;
border:none;
}
#body{
position:fixed;
width:100%;
height:100%;
margin:0 auto;
background:#4b00a1;
}
#myNav123{
background:#4b00a1;
display: flex;
align-items:center;
justify-content:flex-end;
}
#myNav123 button{
max-width:100px;
word-break:break-word;
margin-right:10px;
}
#myNav123 button:hover{
background:#9d47ff;
}
#myNav123 button small{
font-size:xx-small;
margin-top:-10px;
}
#code{
width:100%;
margin:0 auto;
background:#112231;
display:flex;
flex-flow:row nowrap;
}
#myNav123 *{
color:white;
}
#scroll{
overflow: auto;
width:100%;
height:92%;
background:black;
position: absolute;
bottom:0;
}
#code textarea{
width:93%;
font-family:Verdana,Arial,sans-serif;
color:rgb(207, 187, 255);
background:black;
padding-bottom:10px;
overflow:hidden;
padding-bottom:30px;
padding-top:10px;
display: block;
height:400px;
}
#bottomNav{
width:100%;
display: flex;
align-items:center;
justify-content:spaces-around;
background:rgb(1, 0, 68);
position:fixed;
color:white;
position:fixed;
bottom:0;
overflow-x:auto;
}
#bottomNav button:hover {
background: grey;
color:black;
}
#bottomNav button{
color:grey;
margin-left:10px;
height: 100%;
padding: 10px;
}
#code #lines{
width:5%;
flex-wrap:wrap;
align-items:flex-start;
color:yellow;
background:black;
font-size:small !important;
padding-bottom:30px;
padding-top:10px;
}
#lines span{
display:block;
}
#copy{
position: fixed;
bottom:0;
width: auto;
right:0;
margin-bottom:50px;
margin-lefT:-10px;
}
#copy button{
color:rgb(255, 0, 98);
height: 100%;
padding: 10px 10px;
}
#copy button:hover{
color:rgb(38, 0, 255);
}