-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
54 lines (51 loc) · 948 Bytes
/
index.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
/*
$base-dark: #202040;
$base-dark-contrast: #602080;
$base-mid: #202060;
$base-mid-contrast: #b030b0;
$dark-theme-link: #77FFAE;
$dark-theme-warning-link: #FF471B; */
hr {
border-color: #77FFAE;
margin: 1.5em auto;
}
html {
box-sizing: border-box;
font-size: 16px;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
background-color: #202060;
color: white;
font-size: 1rem;
font-family: Helvetica, sans-serif;
height: 100%;
line-height: 2;
margin: 0;
padding: 0;
width: 100%;
}
a {
color: #77FFAE;
text-decoration: none;
}
button {
background-color: #602080;
border-color: #b030b0;
color: white;
cursor: pointer;
letter-spacing: 1px;
padding: 1em;
text-decoration: none;
text-transform: capitalize;
}
button:hover {
background-color: #b030b0;
box-shadow: 0 0 5px #b030b0;
font-weight: bold;
}
button:focus {
box-shadow: 0 0 5px #b030b0;
}