-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathepic.css
54 lines (54 loc) · 886 Bytes
/
epic.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
*{margin:0; padding:0; border:none; font-size:100%;}
html{
font-family: 'Ravi Prakash', cursive;
font-size: 1.25vw;
background: #660000 url(images/ACDC_stage.jpg) no-repeat;
background-size: cover;
}
body{
}
#first{
color: maroon;
font-size: 400%;
text-align: center;
padding-top: 1vw;
}
.group1, .group2{
width: 50%;
text-align: right;
float: left;
}
.group2{
text-align: left;
float: right;
}
.group1::after, .group2::after{
content: '';
clear: both;
}
.keys{
/*width: 80%;*/
/*margin: 0 auto;*/
display: flex;
min-height: 80vh;
align-items: center;
/*justify-content: space-around;*/
justify-content: center;
}
.key{
color: #990000;
background-color:black;
border: 4px solid #990000;
border-radius: 10vw;
padding: 1vw 2vw;
text-align: center;
width: 3.5vw;
}
.key kbd{
display: block;
font-size: 300%;
}
.key span{
display: block;
font-size: 75%;
}