-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.scss
126 lines (103 loc) · 1.52 KB
/
index.scss
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
$primary: #ffffff;
$secondary: #ff2670;
$dark: #242a35;
* {
font-family: Arial, Helvetica, sans-serif;
color: $dark;
}
html {
background-color: $dark;
display: flex;
justify-content: center;
height: 100%;
}
h1 {
font-weight: bolder;
color: $dark;
}
body {
width: 800px;
max-width: 100%;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
min-height: 100%;
margin: 0px;
padding: 16px;
background-color: $primary;
}
p {
white-space: pre-wrap;
border-radius: 8px;
padding: 8px;
color: $dark;
}
button {
font-size: large;
padding: 8px 16px;
font-weight: bold;
background-color: $dark;
border: none;
border-radius: 8px;
color: white;
cursor: pointer;
display: block;
margin-top: 8px;
}
a {
font-size: medium;
font-weight: bold;
color: $dark;
}
a:link {
color: $dark;
}
/* visited link */
a:visited {
color: $dark;
}
/* mouse over link */
a:hover {
color: $secondary;
}
button:hover {
background-color: $secondary;
}
input {
font-size: large;
background-color: white;
color: $dark;
border-radius: 8px;
padding: 8px 16px;
}
.mb {
margin-bottom: 12px;
}
small {
color: #24cc85;
}
.error {
color: red;
background: black;
padding: 8px;
border-radius: 8px;
}
@keyframes loading {
0% {
transform: translateX(0);
opacity: 1;
}
50% {
transform: translateX(20px);
opacity: 0.5;
}
100% {
transform: translateX(0);
opacity: 1;
}
}
.loading {
animation: loading 0.7s infinite;
}
footer {
position: fixed;
bottom: 0;
}