-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (82 loc) · 1.55 KB
/
style.css
File metadata and controls
96 lines (82 loc) · 1.55 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body, html {
height: 100%;
font-family: 'Segoe UI', sans-serif;
color: #ffffff;
overflow:
position: relative;
}
.background {
position: fixed;
width: 100%;
height: 100%;
background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
overflow: hidden;
z-index: -2;
}
.background::after {
content: "";
position: fixed;
width: 100%;
height: 100%;
background: url(https://upload.wikimedia.org/wikipedia/commons/4/4b/Nomeapp.jpg) repeat;
animation: stars 100s linear infinite;
z-index: -1;
opacity: 0.2;
}
@keyframes stars {
from { background-position: 0 0; }
to { background-position: -10000px 10000px; }
}
.container {
padding: 2em 1em;
text-align: center;
max-width: 600px;
margin: auto;
}
.logo {
width: 80px;
margin-bottom: 1em;
animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.1); opacity: 0.9; }
}
h1 {
font-size: 2em;
margin-bottom: 0.5em;
color: #ff7f50
}
p {
font-size: 1em;
opacity: 0.85;
margin-bottom: 1.5em;
color: #a3f7bf
}
.card {
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 1em;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
margin-bottom: 2em;
}
ul {
list-style: none;
padding: 0;
text-align: left;
margin-top: 1em;
}
ul li {
padding: 0.4em 0;
border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
footer {
font-size: 0.8em;
opacity: 0.6;
}