-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
77 lines (67 loc) · 1.2 KB
/
styles.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
body {
margin: 0;
overflow: hidden;
background-color: white;
color: black;
}
canvas {
display: block;
}
.back-button {
position: absolute;
top: 20px;
left: 20px;
background-color: rgba(0, 0, 0, 0.7);
color: white;
border: none;
cursor: pointer;
padding: 10px;
font-size: 24px;
z-index: 10;
}
.back-button:hover {
background-color: rgba(0, 0, 0, 0.9);
}
.info-box {
position: absolute;
bottom: 80px;
right: 20px;
background-color: rgba(255, 255, 255, 0.9);
color: #000;
padding: 15px;
border-radius: 8px;
width: 250px;
display: block;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.info-box h3 {
margin: 0 0 10px 0;
font-size: 18px;
}
.info-box p {
margin: 5px 0;
font-size: 14px;
line-height: 1.5;
}
.info-box p.urdu {
text-align: right;
font-family: 'Noto Nastaliq Urdu', serif;
}
.nav-bar {
position: absolute;
bottom: 20px;
right: 20px;
display: flex;
gap: 10px;
}
.nav-button {
background-color: #007BFF;
color: white;
border: none;
padding: 8px 12px;
border-radius: 4px;
cursor: pointer;
}
.nav-button:hover {
background-color: #0056b3;
}