-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (65 loc) · 1.09 KB
/
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
body{
text-align: center;
background-color: pink;
scroll-behavior: smooth;
}
h1{
text-decoration: underline;
}
/* on div box add styling */
.btn{
height: 150px;
width: 150px;
border-radius: 15%;
border: 7px solid black;
margin: 1.9rem;
}
.btn-container{
display: flex;
justify-content: center;
}
.red{
background-color:#d95980;
}
.yellow{
background-color: #f99b45;
}
.green{
background-color:#00800059
}
.purple{
background-color: #809ff9;
}
.flash{
background-color: white;
}
.userflash{
background-color: green;
}
/* Spacebar */
.virtual-key {
width: 324px;
background-color: white;
height: 50px;
text-align: center;
border-radius: 15px;
font-size: 30px;
font-family: cursive;
border: 2px solid black;
cursor: pointer;
box-shadow: 5px 5px 4px rgb(255, 255, 255);
}
.virtual-key.clicked {
background-color: black;
}
/* spacebar */
.spacebar {
display: flex;
flex-direction: row;
justify-content: center;
}
.credits {
font-family: cursive;
font-size: 20px;
margin-top: 4px;
}