-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (80 loc) · 1.55 KB
/
Copy pathstyle.css
File metadata and controls
97 lines (80 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
97
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(to bottom, #000000, #240b87);
background-attachment: fixed;
background-repeat: no-repeat;
background-size: cover;
background-blend-mode: overlay;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
}
.container h1 {
font-size: 48px;
color: #fff;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
.container p {
font-size: 24px;
color: #ead8d8;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
margin-top: 10px;
}
.container a {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: #fff;
color: #333;
text-decoration: none;
border-radius: 5px;
text-shadow: none;
transition: background-color 0.3s ease;
}
.container a:hover {
background-color: #e6e6e6;
}
header {
background-color: #000000;
background: linear-gradient(to bottom, #710fc2, #240b87);
color: #000000;
padding: 20px;
text-align: center;
}
h1 {
font-size: 24px;
margin: 0;
}
.main {
padding: 20px;
}
.link-list {
list-style: none;
padding: 0;
margin: 0;
}
.link-list li {
margin-bottom: 10px;
}
.link-list li a {
display: flex;
align-items: center;
padding: 10px;
background-color: #151111;
text-decoration: none;
color: #333;
border-radius: 5px;
}
.link-list li a i {
margin-right: 10px;
}
.link-list li a:hover {
background-color: #b50003;
}