-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
60 lines (55 loc) · 960 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
55
56
57
58
59
60
@charset "utf-8";
:root {
--page-bg: #FBF5E7;
--piano-border: #602;
--piano-bg: #FBF5E7;
--graph-bg: #fefefe;
--button: #cf1518;
--button-alt: #602;
--borders: #cf1518;
}
body {
background-color: var(--page-bg);
text-align: center;
align-content: center;
}
.preview-image{
width: 1150px;
height: 80%;
border-radius: 40px;
border: 1px solid #333;
box-shadow: 5px 5px 5px #333, inset 5px 5px 5px #333;
}
.container {
text-align:center;
width:100%;
height: 80pt;
}
.link-div {
display:inline-block;
width: 250px;
border: 2px solid var(--piano-border);
background-color: var(--button);
margin: 20px;
border-radius: 10px;
align-content: center;
text-align: center;
font-size: 50px;
font-family: monospace;
}
a:link {
text-decoration: none;
color: white;
}
a:visited {
text-decoration: none;
color: white;
}
a:hover {
text-decoration: none;
color: white;
}
a:active {
text-decoration: none;
color: white;
}