-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (104 loc) 路 1.88 KB
/
Copy pathstyle.css
File metadata and controls
107 lines (104 loc) 路 1.88 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-thumb {
background: #000;
border-radius: 5px;
}
::-webkit-scrollbar-track {
/* overflow: hidden; */
background: rgba(202, 202, 202, 0.658);
}
body {
background: rgba(0, 0, 0, 0.245);
color: rgb(227, 226, 226);
box-sizing: border-box;
overflow: hidden;
transition: all ease 1s;
scroll-behavior: smooth;
}
.container {
width: 100%;
height: 100vh;
padding: 0px 2px;
display: flex;
overflow-x: hidden;
}
.left,
.right {
flex-basis: 50%;
max-width: 50%;
min-width: 50%;
height: 100%;
}
.right {
height: 100%;
margin-left: 5px;
}
textarea {
resize: none;
width: 100%;
height: 30.35%;
background: #2c2b2bd0;
color: rgb(192, 192, 235);
padding: 10px 20px;
border: none;
outline: none;
font-size: 18px;
border: none;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
iframe {
width: 100%;
height: 100%;
background: white;
border: none;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
label i {
margin-right: 10px;
margin-left: 10px;
border: none;
/* border-top-left-radius: 25px;
border-top-right-radius: 25px; */
}
label:hover i{
transform: rotate(-10deg);
scale: 1.16;
}
label {
display: flex;
align-items: center;
background: black;
height: 30px;
border: none;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
a {
text-decoration: none;
color: inherit;
}
.outRight {
margin-left: 1rem;
font-size: 0.8rem;
font-family: Georgia, "Times New Roman", Times, serif;
color: rgb(47, 255, 61);
}
#outputBox {
height: 98vh;
width: 100%;
overflow: hidden;
position: absolute;
right: -100%;
}
#outputBox a {
color: rgb(47, 255, 61);
}