-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
76 lines (61 loc) · 985 Bytes
/
style.css
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
@import 'theme.css';
html {
display: grid;
place-items: center;
height: 100%;
}
body {
color: var(--text-color);
background: var(--bg-color);
padding: 10px;
}
body, input, button {
font: var(--font-size) var(--font-family);
}
h1, strong, a {
color: var(--theme-color);
}
h1, p {
margin: 10px 0;
text-align: center;
}
p {
margin-bottom: 20px;
}
label {
display: block;
}
label, button {
margin-top: 10px;
}
input, button {
width: 100%;
padding: 5px;
box-sizing: border-box;
}
input {
color: var(--text-color);
border: 1px solid var(--theme-color);
outline: none;
margin-top: 5px;
}
input, button:hover {
background: transparent;
}
button {
color: var(--bg-color);
background: var(--theme-color);
border: 1px solid var(--theme-color);
cursor: pointer;
transition: 100ms;
}
button:hover {
color: var(--theme-color);
}
button:active {
border: 1px solid var(--bg-color);
}
::selection {
color: var(--bg-color);
background: var(--theme-color);
}