-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
76 lines (76 loc) · 1.52 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
body {
/* background-image: url(bg.jpg); */
background-color: #717171;
display: flex;
justify-content: center;
align-items: center;
min-height: 90vh;
font-family: 'Minecraft', sans-serif;
}
.casing {
background-color: #ff6a6a;
position: relative;
height: 400px;
width: 900px;
border-radius: 50px;
display: flex;
justify-content: space-around;
align-items: center;
}
.LR, .UD {
background-color: #e04040;
height: 100px;
width: 150px;
border-radius: 20px;
display: flex;
justify-content: space-evenly;
align-items: center;
}
button {
border: none;
background-color: #772727;
height: 60px;
width: 60px;
border-radius: 20px;
font-size: 2rem;
}
.screen {
position: relative;
background-color: #c3c3c3;
height: 300px;
width: 500px;
border-radius: 20px;
display: flex;
justify-content: center;
align-items: center;
}
.box {
height: 100px;
width: 100px;
position: relative;
top: 0;
left: 0;
display: flex;
justify-content: center;
align-items: center;
font-size: 3rem;
font-style: normal;
background-color: #404040;
border-radius: 20px;
/* transition: top 0.2s ease-in-out, left 0.2s ease-in-out; */
}
.coords {
position: absolute;
left: 350px;
top: 0px;
background-color: #404040;
width: 200px;
height: 50px;
display: flex;
justify-content: space-evenly;
align-items: center;
}
span {
position: relative;
color: #ffffff;
}