-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.css
More file actions
76 lines (70 loc) · 1.36 KB
/
start.css
File metadata and controls
76 lines (70 loc) · 1.36 KB
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
img{
image-rendering: optimizeSpeed; /* STOP SMOOTHING, GIVE ME SPEED */
image-rendering: -moz-crisp-edges; /* Firefox */
image-rendering: -o-crisp-edges; /* Opera */
image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
image-rendering: pixelated; /* Universal support since 2021 */
image-rendering: optimize-contrast; /* CSS3 Proposed */
-ms-interpolation-mode: nearest-neighbor;
}
@media screen and (min-width: 1224px){
body
{
display: flex;
align-items: center;
justify-content: center;
height: 100%;
background-color: rgba(0,0,0,0.75);
}
#kebap
{
position: absolute;
z-index: 1;
}
#title
{
position: absolute;
top: 50px;
left: 50%;
margin-left: -125px;
scale: 2;
}
#credits
{
position: absolute;
top: 100px;
left: 50%;
margin-left: -45px;
}
#playButton
{
position: absolute;
top: 50%;
display: flex;
scale: 2;
}
#playButton img
{
width: 200px;
position: absolute;
left: -100px;
top: -10px;
}
#playButton a
{
position: absolute;
display: flex;
text-decoration: none;
color: black;
}
#play
{
position: absolute;
z-index: 1;
font-size: xx-large;
left: -25px;
top: -20px;
}
}
@media screen and (min-width: 320px){
}