forked from AlwaysFr3sh2/ArcadeOne
-
Notifications
You must be signed in to change notification settings - Fork 0
/
arcadestyle.css
59 lines (51 loc) · 1.09 KB
/
arcadestyle.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
button {
background-color: #E3144F;
color: white;
border: none;
width:15%;
height:50px;
border-radius: 10px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: auto;
}
button:hover {
background-color: white;
color: #E3144F;
box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
div {
text-align: center;
}
.box{
background-color: black;
padding: 10px;
}
p {
font-size: 2vw;
color: #E3144F;
box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
background-color: #262526;
text-align: center;
display: inline-block;
padding: 0.4em 0.9em 0.4em 0.9em;
margin: 10px;
}
body {
/*background-color: #7d7d7d;*/
background-image: linear-gradient(#a1b0c7, #606975);
background-repeat: no-repeat;
height: 100%;
margin: 0;
background-attachment: fixed;
font-family: "Verdana";
text-align: center;
vertical-align: middle;
}
canvas {
box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
background-color: #262526;
margin-top: 2%;
}