forked from userlandkernel/wksploit-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
145 lines (131 loc) · 4.55 KB
/
style.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/***
* /$$$$$ /$$ /$$ /$$ /$$ /$$ /$$ /$$ /$$ /$$$$$$
* |__ $$ |__/| $$| $$ | $$ | $$$ /$$$ /$$$$ /$$$$ /$$$_ $$
* | $$ /$$$$$$ /$$| $$| $$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$ | $$ /$$ | $$$$ /$$$$ /$$$$$$ |_ $$ |_ $$ | $$$$\ $$
* | $$ |____ $$| $$| $$| $$__ $$ /$$__ $$ /$$__ $$ |____ $$| $$ /$$/ | $$ $$/$$ $$ /$$__ $$ | $$ | $$ | $$ $$ $$
* /$$ | $$ /$$$$$$$| $$| $$| $$ \ $$| $$ \__/| $$$$$$$$ /$$$$$$$| $$$$$$/ | $$ $$$| $$| $$$$$$$$ | $$ | $$ | $$\ $$$$
* | $$ | $$ /$$__ $$| $$| $$| $$ | $$| $$ | $$_____/ /$$__ $$| $$_ $$ | $$\ $ | $$| $$_____/ | $$ | $$ | $$ \ $$$
* | $$$$$$/| $$$$$$$| $$| $$| $$$$$$$/| $$ | $$$$$$$| $$$$$$$| $$ \ $$ | $$ \/ | $$| $$$$$$$ /$$$$$$ /$$$$$$ /$$| $$$$$$/
* \______/ \_______/|__/|__/|_______/ |__/ \_______/ \_______/|__/ \__/ |__/ |__/ \_______/ |______/|______/|__/ \______/
*
* UI Design by Sem Voigtländer
*
*/
::-webkit-scrollbar {
width: 5px;
height: 8px;
background-color: rgba(0, 0, 0, 0.5); /* or add it to the track */
}
* {
font-family: 'Arial', sans-serif;
}
body, html {
margin: 0;
padding: 0;
min-height: 100%;
color: #FFF;
text-align: center;
background-size: cover;
}
header {
width: 100%;
position: fixed;
background: rgba(0, 0, 0, 0.5);
color: #FFF;
top:0;
box-shadow: 3px 3px 3px #000;
}
footer {
width: 100%;
position: fixed;
background: rgba(0, 0, 0, 0.7);
color: #FFF;
bottom: 0;
box-shadow: 3px 3px 3px 6px #000;
z-index: 100;
}
main {
width: 100%;
min-height: 100%;
padding-bottom: 50%;
position: initial;
}
main section {
padding-top: 25.5%;
text-align: left;
}
main section p {
padding: 15px;
margin: 15px;
background: rgba(0, 0, 0, 0.4);
border-radius: 5px;
}
footer section {
text-align: center;
color: #000;
}
footer section::before {
}
input[type='range'] {
-webkit-appearance: none; /* Override default CSS styles */
appearance: none;
width: calc(100% - 50px); /* Full-width */
height: 50px; /* Specified height */
background:rgba(0, 0, 0, 0.5); /* Grey background */
outline: none; /* Remove outline */
opacity: 1; /* Set transparency (for mouse-over effects on hover) */
-webkit-transition: .2s; /* 0.2 seconds transition on hover */
transition: opacity .2s;
padding-right: 0;
margin:0;
border-radius: 15px;
}
footer section::before {
font-style: bold;
color:#fff;
font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
content: 'SLIDE TO JAILBREAK';
font-size: 14px;
padding: 2px;
position: relative;
z-index: 100;
text-align: center;
display: block;
width: 100%;
}
footer section::after {
font-style: bold;
font-weight: bold;
color:#fff;
font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
content: '© Copright 2018 Sem Voigtländer';
font-size: 15px;
padding: 2px;
position: relative;
z-index: -1;
text-align: center;
display: block;
width: 100%;
}
input[type='range']:hover {
opacity: 1;
}
input[type='range']::-webkit-slider-runnable-track{
margin-right: 50px;
z-index: 100;
}
input[type='range']::-webkit-slider-thumb {
cursor: pointer;
background: rgba(200, 200, 200, 0.7);
-webkit-appearance: none;
appearance: none;
width: 50px;
height: 35px;
border-radius: 15px;
z-index: 9999;
margin-left: 15px;
margin-right: 15px;
padding-right: 15px;
box-shadow: 5px 5px 5px #000;
z-index: 100;
}