Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
titaniumnetwork-dev
GitHub Repository: titaniumnetwork-dev/Ultraviolet-App
Path: blob/main/public/index.css
120 views
1
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap");
2
3
body {
4
font-family: "Roboto", Arial, Helvetica, sans-serif;
5
margin: 0;
6
background: #111;
7
display: flex;
8
flex-direction: column;
9
min-height: 100vh;
10
}
11
12
.fa-magnifying-glass {
13
color: white;
14
}
15
16
.flex-center {
17
display: flex;
18
justify-content: center;
19
}
20
21
.header-center {
22
align-items: center;
23
flex-direction: column;
24
margin-top: 10%;
25
}
26
27
.left-margin {
28
margin: 0px 16px;
29
}
30
31
#uv-frame {
32
border: none;
33
position: absolute;
34
top: 0;
35
left: 0;
36
width: 100vw;
37
height: 100vh;
38
background-color: #111;
39
}
40
41
#uv-error {
42
color: #ff6666 !important;
43
white-space: pre-wrap;
44
}
45
46
#uv-error-code {
47
font-size: 12px;
48
color: #fff;
49
font-family: "Courier New", Courier, monospace;
50
}
51
52
#uv-register-sw {
53
color: white;
54
background: #555555;
55
cursor: pointer;
56
outline: none;
57
border: none;
58
border-radius: 6px;
59
padding: 16px 20px;
60
line-height: 16px;
61
display: none;
62
}
63
64
#uv-register-sw:active {
65
background: #333333;
66
}
67
68
#uv-register-sw.show {
69
display: block;
70
}
71
72
.logo {
73
width: 150px;
74
height: 150px;
75
}
76
77
.logo-wrapper .text {
78
font-size: 75px;
79
color: #fff;
80
}
81
82
.logo-wrapper h1 {
83
color: white;
84
}
85
86
footer {
87
margin: 0 5vw;
88
margin-top: auto;
89
display: flex;
90
flex-direction: column;
91
line-height: 30px;
92
margin-bottom: 20px;
93
}
94
95
footer > div {
96
display: flex;
97
justify-content: left;
98
align-items: center;
99
flex-wrap: wrap;
100
margin-bottom: 15px;
101
}
102
103
footer a,
104
footer span {
105
margin: 0 15px;
106
text-decoration: none;
107
color: #fff;
108
font-size: 15px;
109
}
110
111
footer a {
112
cursor: pointer;
113
}
114
115
footer a:hover {
116
text-decoration: underline;
117
}
118
119
.desc p {
120
width: 560px;
121
color: rgba(253, 253, 253, 0.514);
122
}
123
124
#uv-address {
125
background: none;
126
font-family: inherit;
127
padding: 0px 17px;
128
height: 48px;
129
border: 1px solid rgb(255, 255, 255, 0.2);
130
color: var(--text-color);
131
border-radius: 3px;
132
outline: none;
133
width: 350px;
134
margin-top: 5px;
135
border-radius: 50px;
136
color: #fff;
137
transition: border-radius 0.1s;
138
}
139
140
#uv-address:focus {
141
border: 1px solid rgba(253, 253, 253, 0.514);
142
border-radius: 6px;
143
}
144
145
.credit {
146
border-radius: 10px;
147
padding: 10px;
148
display: block;
149
border: #fff 1px solid;
150
color: #fff;
151
display: flex;
152
flex-wrap: wrap;
153
margin-bottom: 15px;
154
}
155
156
.credit label {
157
margin-left: auto;
158
margin-right: 15px;
159
}
160
161
.credit a,
162
.credit label {
163
color: white;
164
text-decoration: underline;
165
text-align: right;
166
}
167
168
.credit pre {
169
display: none;
170
width: 100%;
171
}
172
173
.credit label::after {
174
content: "show license";
175
cursor: pointer;
176
}
177
178
.credit input:checked + label::after {
179
content: "hide license";
180
}
181
182
.credit input:checked ~ pre {
183
display: block;
184
}
185
186