-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (61 loc) · 1.06 KB
/
style.css
File metadata and controls
61 lines (61 loc) · 1.06 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
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");
* {
font-family: "Roboto", sans-serif;
}
body {
background: #20232a;
}
.container h1 {
color: rgb(97, 218, 251);
font-size: 5em;
font-weight: lighter;
text-align: center;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 25px;
}
.container > p {
color: #fff;
}
.welcome-back {
margin: 35px auto;
background: #ccc;
border-radius: 12px;
padding: 25px;
}
.welcome-back h2 {
margin: 0 0 35px;
text-align: center;
font-size: 2.5em;
font-weight: normal;
}
.welcome-back button {
font-size: 2em;
background: #20232a;
color: rgb(97, 218, 251);
border: none;
padding: 15px;
width: 100%;
max-width: 300px;
margin: 0 auto;
cursor: pointer;
display: block;
border-radius: 12px;
transition: 0.3s;
}
.welcome-back button:hover {
color: #fff;
background: #000;
}
.welcome-back > p {
font-size: 1.2em;
text-align: center;
margin: 0 0 25px;
color: #980000;
}
.welcome-back p.downloading {
font-size: 2em;
color: #333;
}