Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
RishiRecon
GitHub Repository: RishiRecon/exploits
Path: blob/main/misc/vex5/assets/css/app.css
28515 views
1
/*Stylesheet*/
2
body, html {
3
width: 100%;
4
height: 100%;
5
}
6
7
body {
8
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
9
-webkit-touch-callout: none;
10
-webkit-text-size-adjust: none;
11
-webkit-user-select: none;
12
margin: 0;
13
padding: 0;
14
font-family: Arial, Verdana, sans-serif;
15
font-size: 12px;
16
font-weight: normal;
17
color: #ccc;
18
background: #00517d;
19
position: relative;
20
overflow:hidden;
21
}
22
#orientation {
23
margin: 0 auto;
24
position: fixed;
25
top: 0;
26
left: 0;
27
width: 100%;
28
height: 100%;
29
background-image: url(../images/rotate.png);
30
background-repeat: no-repeat;
31
background-position: center;
32
background-color: rgb(0, 0, 0);
33
background-size:60%;
34
z-index: 999;
35
display: none;
36
}
37
#content {
38
height: 100%;
39
}
40
41
#loader,
42
#loader:after {
43
border-radius: 50%;
44
width: 10em;
45
height: 10em;
46
}
47
#loader {
48
margin: 60px auto;
49
font-size: 10px;
50
position: absolute;
51
z-index: 99;
52
left: 50%;
53
top: 50%;
54
margin-left: -5em;
55
margin-top: -5em;
56
text-indent: -9999em;
57
border-top: 1.1em solid rgba(255, 255, 255, 0.2);
58
border-right: 1.1em solid rgba(255, 255, 255, 0.2);
59
border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
60
border-left: 1.1em solid #ffffff;
61
-webkit-transform: translateZ(0);
62
-ms-transform: translateZ(0);
63
transform: translateZ(0);
64
-webkit-animation: load8 1.1s infinite linear;
65
animation: load8 1.1s infinite linear;
66
}
67
#selectmode {
68
margin: 60px auto;
69
font-size: 10px;
70
position: absolute;
71
z-index: 100;
72
left: 50%;
73
top: 50%;
74
}
75
76
@-webkit-keyframes load8 {
77
0% {
78
-webkit-transform: rotate(0deg);
79
transform: rotate(0deg);
80
}
81
100% {
82
-webkit-transform: rotate(360deg);
83
transform: rotate(360deg);
84
}
85
}
86
@keyframes load8 {
87
0% {
88
-webkit-transform: rotate(0deg);
89
transform: rotate(0deg);
90
}
91
100% {
92
-webkit-transform: rotate(360deg);
93
transform: rotate(360deg);
94
}
95
}
96
97