-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
137 lines (121 loc) · 2.55 KB
/
styles.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
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
134
135
136
137
/* General Styling */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background-color: #fdf5f8;
transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
color: #333;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.wrapper {
text-align: center;
z-index: 2;
position: relative;
padding: 30px;
}
/* Title */
.title {
font-family: 'Great Vibes', cursive;
font-size: 4em;
color: #e15d84;
animation: fadeIn 2s ease-in-out forwards;
}
/* Link Buttons */
.links {
margin-top: 50px;
}
.button {
display: inline-block;
margin: 15px;
padding: 15px 40px;
background: linear-gradient(135deg, #f9d6e1 0%, #f29abc 100%);
color: #333;
text-decoration: none;
border-radius: 50px;
font-size: 1.2em;
font-weight: bold;
transition: transform 0.4s ease, box-shadow 0.4s ease;
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}
.button:hover {
transform: scale(1.05);
box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.15);
}
/* Theme Toggle Button */
footer {
margin-top: 70px;
}
.theme-button {
background-color: #333;
color: #fff;
padding: 10px 25px;
border: none;
border-radius: 25px;
cursor: pointer;
transition: transform 0.3s ease, background-color 0.4s ease;
}
.theme-button:hover {
background-color: #555;
transform: scale(1.1);
}
/* Dark Theme */
body.dark {
background-color: #0d1117;
color: #c9d1d9;
}
body.dark .button {
background: linear-gradient(135deg, #333 0%, #555 100%);
color: #c9d1d9;
}
body.dark .button:hover {
box-shadow: 0px 10px 25px rgba(255, 255, 255, 0.1);
}
/* New Wave Background */
.background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
overflow: hidden;
}
.wave {
position: absolute;
bottom: 0;
width: 100%;
height: 20%;
background: linear-gradient(180deg, rgba(225, 93, 132, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
animation: waveAnimation 10s infinite linear;
opacity: 0.5;
}
/* Animation Keyframes */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes waveAnimation {
0% {
transform: translateX(0) translateY(0);
}
50% {
transform: translateX(-50px) translateY(10px);
}
100% {
transform: translateX(0) translateY(0);
}
}