-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
133 lines (113 loc) · 2.39 KB
/
Copy pathstyle.css
File metadata and controls
133 lines (113 loc) · 2.39 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Hp 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
background: #1e1e2f;
color: #ffffff;
min-height: 100vh;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
background-color: #121220;
border-bottom: 1px solid #333;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
}
.logo img {
height: 40px;
}
.logo span {
font-size: 30px;
font-weight: bold;
color: #ffffff;
font-weight: bold;
text-shadow: 0 0 5px #d900ff, 0 0 20px #f1eff2, 0 0 10px #af31c5;
}
nav ul {
display: flex;
gap: 20px;
list-style: none;
}
nav a {
color: #ffffff;
text-decoration: none;
transition: color 0.3s ease;
padding: 10px 15px;
font-size: 20px;
}
nav a:hover {
color: #fff;
}
.blind {
padding: 4rem 2rem;
text-align: center;
text-decoration-color:#d900ff;
}
.blind h1 {
font-size: 3rem;
margin-top: 10rem;
margin-bottom: 1rem;
color: #ffffff;
font-weight: bold;
text-shadow: 0 0 5px #d900ff, 0 0 20px #f1eff2, 0 0 10px #af31c5;
}
.blind p {
font-size: 1.4rem;
max-width: 700px;
margin: 0 auto;
line-height: 1.6;
color: #ffffff;
margin-bottom: 15rem;
font-weight:bold;
}
.container {
background: #3e3951;
padding: 40px 70px;
text-align: center;
}
.bx{
display: flex;
flex-wrap: wrap;
gap: 30px;
margin-top: 30px;
}
.box {
background: #4e4360de;
padding: 20px;
border-radius: 12px;
box-shadow: 0 6px 15px rgba(0,0,0,0.05);
width: 350px;
height:200px;
position: relative;
transition: transform 0.3s;
}
.box h2{
font-weight: bold;
font-size: 25px;
text-shadow: 0 0 5px #d900ff, 0 0 20px #f1eff2, 0 0 10px #af31c5;
}
.last{
margin-bottom: 2rem;
text-align:center;
margin-top: 2rem;
}
.box p{
color: #ffffff;
font-size: 1rem;
margin-top: 15px;
text-align: center;
font-weight: bold;
padding: 10px;
}
.box:hover {
transform: translateY(-10px);
}