-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
68 lines (57 loc) · 1.08 KB
/
styles.css
File metadata and controls
68 lines (57 loc) · 1.08 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
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
html {
font-family: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
body {
background-color: #282a36;
color: #f8f8f2;
width: 20em;
height: 5em;
margin: 1em;
font-size: 1em;
text-align: center;
}
h1 {
color: #ff79c6;
white-space: nowrap;
overflow: show;
font-weight: bold;
font-size: 1.5em;
}
label {
color: #bd93f9;
}
input, button, #loading {
background-color: #44475a;
color: #f8f8f2;
border: none;
padding: 0.5em;
margin: 0.5em 0;
}
input:focus, button:focus {
outline: none;
}
button {
cursor: pointer;
}
#loading {
display: none;
}
#result {
padding: 1em;
}
#result img {
width: 50px;
height: 50px;
border-radius: 50%;
}
a:link,
a:visited {
color: #ff79c6;
text-decoration: underline;
transition: color 0.3s, transform 0.3s;
}
a:hover {
color: #bd93f9;
transform: scale(1.1);
}