-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (72 loc) · 1.29 KB
/
Copy pathstyle.css
File metadata and controls
85 lines (72 loc) · 1.29 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #0f172a;
color: #e2e8f0;
line-height: 1.6;
}
header {
text-align: center;
padding: 60px 20px;
background: linear-gradient(135deg, #1793d1, #0ea5e9);
color: white;
}
header h1 {
font-size: 3rem;
margin-bottom: 10px;
}
.logo {
width: 120px;
height: auto;
margin-bottom: 20px;
filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
transition: transform 0.3s ease;
}
.logo:hover {
transform: scale(1.05);
}
main {
width: 90%;
max-width: 1000px;
margin: 30px auto;
}
.card {
background-color: #1e293b;
padding: 25px;
margin-bottom: 20px;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.card h2 {
color: #38bdf8;
margin-bottom: 15px;
}
.card ul {
padding-left: 20px;
}
.card li {
margin-bottom: 8px;
}
.command {
background-color: #0f172a;
border-left: 4px solid #38bdf8;
padding: 12px;
margin: 12px 0;
border-radius: 6px;
}
code {
display: block;
color: #7dd3fc;
font-family: Consolas, monospace;
margin-bottom: 5px;
}
footer {
text-align: center;
padding: 20px;
background-color: #020617;
margin-top: 30px;
}