-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindexgit.css
More file actions
58 lines (51 loc) · 1.1 KB
/
indexgit.css
File metadata and controls
58 lines (51 loc) · 1.1 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
/* style.css */
:root{
--main: #1f6feb; /* bdel had loun ila bghiti */
--bg: #0b1220;
--text: #eaf2ff;
--muted: #b7c7e6;
}
*{ box-sizing: border-box; margin:0; padding:0; font-family: Arial, sans-serif; }
body{
min-height: 100vh;
display: grid;
place-items: center;
background: radial-gradient(circle at top, rgba(31,111,235,.25), transparent 55%), var(--bg);
color: var(--text);
padding: 20px;
}
.card{
width: min(520px, 100%);
text-align: center;
padding: 40px 28px;
border: 1px solid rgba(234,242,255,.12);
border-radius: 16px;
background: rgba(255,255,255,.04);
backdrop-filter: blur(10px);
box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
h1{
font-size: 34px;
margin-bottom: 12px;
color: var(--text);
}
p{
font-size: 16px;
line-height: 1.7;
color: var(--muted);
margin-bottom: 22px;
}
.btn{
display: inline-block;
padding: 12px 18px;
border-radius: 12px;
background: var(--main);
color: white;
text-decoration: none;
font-weight: 700;
transition: transform .15s ease, opacity .15s ease;
}
.btn:hover{
transform: translateY(-2px);
opacity: .92;
}