-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (82 loc) · 1.57 KB
/
style.css
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
body {
font-family: 'Arial', sans-serif;
background: linear-gradient(135deg, #1f1c2c, #928dab);
color: #fff;
margin: 0;
padding: 0;
overflow-x: hidden;
}
header {
background: linear-gradient(135deg, #232526, #414345);
padding: 50px 20px;
text-align: center;
position: relative;
}
header .header-content {
position: relative;
z-index: 2;
}
header h1 {
margin: 0;
font-size: 3em;
text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}
header p {
margin: 10px 0 0;
font-size: 1.5em;
text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}
main {
padding: 20px;
position: relative;
z-index: 1;
}
section {
margin-bottom: 40px;
}
section h2 {
border-bottom: 2px solid #61dafb;
padding-bottom: 10px;
}
section ul {
list-style: none;
padding: 0;
}
section ul li {
background: rgba(0, 0, 0, 0.3);
margin: 5px 0;
padding: 10px;
border-radius: 5px;
display: flex;
justify-content: space-between;
align-items: center;
}
section ul li::before {
content: '';
width: 10px;
height: 10px;
background: #61dafb;
border-radius: 50%;
display: inline-block;
margin-right: 10px;
}
footer {
background: linear-gradient(135deg, #232526, #414345);
padding: 10px;
text-align: center;
}
footer p {
margin: 0;
font-size: 1em;
}
body::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('https://www.transparenttextures.com/patterns/asfalt-light.png');
opacity: 0.1;
z-index: 0;
}