-
Notifications
You must be signed in to change notification settings - Fork 0
/
paste.css
99 lines (85 loc) · 1.27 KB
/
paste.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
body,
html {
background: #002b36;
padding: 0;
margin: 0;
height: 100%;
margin: 0;
width: 100%;
overflow: none;
text-indent: 0px;
}
textarea,
.code {
width: 100%;
height: 95%;
overflow-y: auto;
overflow-x: hidden;
border: 0;
padding: 0;
outline: none;
resize: none;
font-family: monospace;
font-size: 16px;
right: 2em;
left: 4em;
z-index: 1;
}
@-moz-document url-prefix() {
textarea {
width: 90%;
height: 90%;
}
}
pre {
z-index: 1;
font-size: 16px;
top: 1em;
right: 2em;
bottom: 2em;
left: 1.5em;
height: 100%;
padding: 0px;
}
/*
::-webkit-scrollbar {
opacity: 0
}
*/
#popup,
#popupDecrypt {
z-index: 2;
width: 50%;
height: 40%;
padding-top: 0px;
padding-left: 5%;
padding-right: 5%;
background-color: #001018;
top: 0%;
left: 20%;
right: 20%;
display: none;
border-color: lightgray;
border: 1%;
justify-content: center;
align-items: center;
}
#popupDecrypt {
height: 10%;
padding-top: 2%;
}
.btn {
padding-bottom: 10px;
z-index: 1;
}
#passbox {
width: 60%
}
#pass {
width: 100%;
}
#passwordwarning {
width: 40%;
background-color: #F00;
color: aqua;
}