-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
85 lines (72 loc) · 1.73 KB
/
main.css
File metadata and controls
85 lines (72 loc) · 1.73 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
77
78
79
80
81
82
83
84
85
html, body {
background-image: url("https://r.resimlink.com/Qb2DM4x6.png");
background-size: cover;
background-repeat: no-repeat;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}
body video {
transition: filter 250ms linear;
}
body.loading video {
filter: grayscale(1) brightness(0.25);
}
html, body, video, canvas {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
video, canvas {
position: fixed;
top: 8%;
left: 5%;
right: 25%;
height: 100%;
width: 40%;
}
body:after {
content: "";
position: fixed;
bottom: 20px;
right: 20px;
width: 350px;
height: 150px;
z-index: 1;
background-size: contain;
background-repeat: no-repeat;
background-position: bottom right;
}
#fps {
position: fixed;
bottom: 10px;
left: 10px;
}
#fps:empty {
display: none;
}
#fps:after {
content: " fps";
}
#predictions {
padding: 10px; /* İçerik etrafındaki boşluk */
color: rgba(255, 255, 255, 0.7); /* Beyaz arkaplan rengi, yarı saydam */
position: absolute; /* Pozisyonu mutlak (sayfa üzerinde sabit) */
top: 80px; /* Sayfa üstünden 20 piksel aşağıda */
left: 1000px; /* Sayfa solundan 20 piksel sağda */
max-width: 300px; /* Maksimum genişlik */
text-align: center; /* Metni ortala */
font-size: 20px; /* Yazı boyutu */
font-weight: bold;
}
/*yeni*/
#ilac-bilgileri {
position: fixed;
bottom: 50px;
left: 10px;
padding: 10px;
background-color: rgba(0, 0, 0, 0.7);
color: white;
font-size: 14px;
max-width: 300px;
border-radius: 8px;
}