-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (73 loc) · 1.9 KB
/
style.css
File metadata and controls
89 lines (73 loc) · 1.9 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
86
87
88
89
@import url('https://fonts.googleapis.com/css2?family=Anek+Tamil:wght@100..800&family=Atkinson+Hyperlegible+Mono:ital,wght@0,200..800;1,200..800&family=Lexend+Deca:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Readex+Pro:wght@160..700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Outfit', Tahoma, Geneva, Verdana, sans-serif;
background-color: #1e1e2f;
color: #f5f5f5;
display: flex;
justify-content: center;
align-items: flex-start; /* changed from center */
min-height: 100vh;
padding: 40px 20px; /* added top and bottom padding */
overflow-y: auto; /* allows scroll if content exceeds */
}
.container {
background-color: #2a2a3c;
padding: 40px 30px; /* increased padding inside the box */
border-radius: 12px;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
width: 100%;
max-width: 700px;
}
h1 {
text-align: center;
color: #00ff9f;
margin-bottom: 20px;
font-family: 'Courier New', Courier, monospace;
}
.description {
font-size: 1.1rem;
margin-bottom: 20px;
text-align: center;
color: #ccc;
}
ul {
list-style-type: disc;
padding-left: 20px;
margin-top: 10px;
}
li {
font-size: 1.05rem;
margin: 10px 0;
line-height: 1.6;
color: #e0e0e0;
}
code {
font-family: "Courier New", monospace;
color: #00ff9f;
background-color: #1a1a28;
padding: 2px 6px;
border-radius: 4px;
}
.screenshot-section {
text-align: center;
margin: 30px 0;
}
.screenshot-section h2 {
margin-bottom: 15px;
color: #e4ff6b;
}
.screenshot {
width: 100%;
max-width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
object-fit: contain;
margin-top: 10px;
border: 2px solid #333;
}