-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (64 loc) · 1.16 KB
/
style.css
File metadata and controls
72 lines (64 loc) · 1.16 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
body {
background-image: url('./assets/background.png');
display: inline-block;
}
input[type=text], select {
padding: 12px 20px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
opacity: 0.5;
}
input:focus {
outline: none !important;
opacity: 0.8;
}
.link {
width: 50%;
margin-top: 130px;
margin-left: 300px;
}
.install {
background-color: gray; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 4px;
width: 10%;
opacity: 0.5;
position: absolute;
top: 138px;
left: 560px;
height: 41px;
}
.install:hover {
opacity: 0.9;
}
.loader {
border: 5px solid darkgray; /* Light grey */
border-top: 5px solid lavender; /* Blue */
border-radius: 50%;
width: 20px;
height: 20px;
animation: spin 5s linear infinite;
position:absolute;
top: 143px;
left: 650px;
opacity: 0.5;
display: none;
}
.error {
position: absolute;
top: 172px;
left: 310px;
color: gray;
font-family: 'Urbanist', sans-serif;
display: none;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}