-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·55 lines (50 loc) · 761 Bytes
/
style.css
File metadata and controls
executable file
·55 lines (50 loc) · 761 Bytes
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
body {
background-color: #000;
font-family: 'Open Sans Condensed', sans-serif;
width: 500px;
margin: 0 auto;
user-select: none;
font-size: 20px;
}
img {
display: block;
margin-top: 40px;
margin-bottom: 20px;
width: 100%;
}
p {
color: #fbff9a;
text-align: center;
}
.btn {
display: inline-block;
width: 20%;
text-align: center;
padding: 5px;
border: 1px dotted grey;
margin: 5px;
width: 90px;
height: 90px;
position: relative;
line-height: 45px;
cursor: pointer;
transition: all 34ms ease-in-out;
}
.btn:active {
background-color: #fbff9a;
}
.btn p {
margin: 0;
}
.firstLine p{
color: #e60000;
}
.secondLine p {
color: #ffffcc;
}
.thirdLine p {
color: #e6e600;
}
.fourthLine p {
color: #990000;
}