-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (95 loc) · 2.16 KB
/
style.css
File metadata and controls
97 lines (95 loc) · 2.16 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
90
91
92
93
94
95
96
97
:root{
--bg: #353535;
--card: #db875a;
--accent: #4f46e5;
--muted: #ffffff;
--text: #e6eef8;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
margin:0;
font-family:Inter, Lucida, Console, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
background: var(--bg);
color:var(--text);
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
line-height:1;
padding:2rem;
.box-img{
display:block;
max-width:100%;
width:360px;
height:auto;
border-radius:6px;
margin-bottom:0.75rem;
object-fit:cover;
}
}
.container{
max-width:750px;
margin:0 auto;
background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
border:1px solid rgba(255,255,255,0.03);
border-radius:5px;
padding:1.5rem;
box-shadow:0 6px 30px rgba(2,6,23,0.6);
}
header.site-header{
display:flex;
align-items:center;
justify-content:space-between;
gap:1rem;
margin-bottom:1rem;
}
.site-title{
font-size:3.5rem;
font-weight:600;
letter-spacing:0.2px;
}
.nav{display:flex;gap:0.5rem}
a{color:var(--text);text-decoration:none}
a:hover{color:var(--accent)}
.card{
background:var(--card);
border-radius:10px;
padding:1rem;
border:1px solid rgba(255,255,255,0.02);
}
h1{font-size:1.6rem;margin-bottom:0.25rem}
h2{font-size:1rem;color:var(--muted);margin-top:0;margin-bottom:0.85rem}
p{color:var(--muted);margin:0 0 1rem 0}
ul{padding-left:1.25rem;margin:0 0 1rem 0}
li{margin:0.35rem 0}
.hero{padding:1.25rem;border-radius:12px;margin-bottom:1rem}
h1,h2{margin:0 0 0.5rem 0}
p{color:var(--muted);margin:0 0 1rem 0}
.box{
background:#ff5b5b;
color:#05202a;
padding:4rem;
margin-top:2.5rem;
border-radius:7px;
border:1px solid rgba(0,0,0,0.06);
box-shadow:0 6px 20px rgba(5,32,42,0.06);
}
.btn{
background:linear-gradient(90deg,var(--accent),#7c3aed);
color:white;
border:none;
padding:0.5rem 0.9rem;
border-radius:8px;
cursor:pointer;
font-weight:600;
}
.btn.secondary{
background:transparent;
border:1px solid rgba(255,255,255,0.06);
color:var(--text);
}
.site-header{padding:0 0 1rem 0}
@media (max-width:640px){
body{padding:1rem}
.site-title{font-size:1.1rem}
.container{padding:1rem}
}