-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathp1.css
More file actions
75 lines (66 loc) · 1.21 KB
/
p1.css
File metadata and controls
75 lines (66 loc) · 1.21 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
69
70
71
72
73
74
75
body {
background-color: white;
/*Color Scheme picked from https://www.schemecolor.com/unblemished.php*/
background-image: linear-gradient(to bottom, #5B478E, #8551A2, #D499B9, #E8B4CF, #FAD5EA);
margin: 0 5%;
font-family: sans-serif;
font-size: 20pt;
}
h1 {
color: rgb(233, 150, 122);
font-size: 3em;
-webkit-text-stroke: 1pt;
-webkit-text-stroke-color: black;
text-align: center;
font-family: serif;
font-weight: normal;
text-transform: uppercase;
margin-top: 30px;
border-bottom: 2px solid black;
}
h2 {
color: rgb(233, 150, 122);
font-size: 1.75em;
-webkit-text-stroke: 1pt;
-webkit-text-stroke-color: black;
}
#guitar-tuner {
width: 100%;
height: 100%;
text-align:center;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
border-radius: 100%;
position: relative;
}
#canvas {
position: relative;
width: 100%;
}
.button {
width: 100%;
height: auto;
display: inline-block;
background-color: black;
margin: 0 10px 10px 0;
color: #fff;
text-align: center;
line-height: 60px;
cursor: pointer;
font-size: 20pt;
}
.button:hover {
background-color: red;
}
.content {
width: auto;
height: auto;
display: block;
text-align: center;
}
.hide {
display: none;
}
li{
list-style-type: none;
}