-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (89 loc) · 2.08 KB
/
Copy pathstyle.css
File metadata and controls
103 lines (89 loc) · 2.08 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
:root {
--primary-blue: #329696;
--secondary-blue: #64CDCD;
--primary-green: #4CAF50;
--background-color: #F5F5F5;
--text-color: #333333;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: var(--background-color);
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
min-height: 100vh;
color: var(--text-color);
}
.container {
max-width: 600px;
width: 100%;
}
.logo-container {
display: flex;
justify-content: center;
width: 100%;
margin-bottom: 20px;
}
.logo {
max-width: 300px;
width: 100%;
}
.tagline {
text-align: center;
margin-bottom: 20px;
color: var(--primary-blue);
font-weight: bold;
font-size: 1.2em;
}
.about {
text-align: center;
margin-bottom: 30px;
line-height: 1.6;
}
.link-group {
margin-bottom: 30px;
}
.group-title {
font-size: 1.2em;
font-weight: bold;
margin-bottom: 15px;
color: var(--primary-blue);
text-transform: uppercase;
letter-spacing: 1px;
}
.link-list {
display: flex;
flex-direction: column;
gap: 12px;
}
.link-item {
background-color: #fff;
padding: 15px;
text-decoration: none;
color: var(--text-color);
display: flex;
align-items: center;
transition: all 0.3s ease;
border: 2px solid var(--secondary-blue);
}
.link-item:hover {
transform: translateY(-3px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
background-color: var(--secondary-blue);
color: white;
}
.link-item i {
margin-right: 15px;
font-size: 24px;
color: var(--primary-blue);
transition: color 0.3s ease;
}
.link-item:hover i {
color: white;
}