-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
77 lines (67 loc) · 1.23 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
75
76
77
.container {
display: flex;
background-color: black;
color:white;
align-items: center;
}
li {
list-style-type: none;
margin:4px;
}
.displayNone{
display:none;
}
.instruction-container{
position: fixed;
top: 0;
left: 0;
transform: translate(calc(50vw - 50%), calc(50vh - 50%));
z-index: 999;
border: 1px solid rgb(253, 250, 250);
background-color: black;
padding: 1rem 2rem 5rem 2rem;
width: 35%;
display: block;
border-radius: 5px;
}
h1,h2,p{
text-align: center;
color:white;
}
p{
font-size: 20px;
}
#start{
position: fixed;
left: 50%;
transform: translate(-50%, 0);
padding: 12px 30px;
}
button {
display: inline-block;
padding: 15px 25px;
font-size: 24px;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #fff;
background-color: #800020;
border: none;
}
button:hover {background-color: #474947}
button:active {
background-color: #070707;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
.pic
{
display: flex;
background-color: black;
color:white;
align-items: center;
position: fixed;
top: 0;
right: 0;
}