-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
140 lines (121 loc) · 2.42 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
138
139
140
/* Reset some default browser styles for a clean slate */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
text-align: center;
background: linear-gradient(135deg, #6a11cb, #2575fc);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
max-width: min(600px, 80vw);
width: 100%;
padding: 40px 20px;
background-color: #ffffff;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
border-radius: 15px;
transition: transform 0.3s, box-shadow 0.3s;
display: flex;
flex-direction: column;
align-items: center;
}
.container:hover {
transform: scale(1.02);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}
h1 {
font-size: 2.5em;
color: #000;
margin-bottom: 20px;
background: linear-gradient(135deg, #6a11cb, #2575fc);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
#description {
font-size: 1.2em;
color: #000;
margin-bottom: 20px;
}
button {
padding: 12px 25px;
font-size: 1.1em;
background-color: #6614c9;
color: #fff;
border: none;
border-radius: 25px;
cursor: pointer;
transition: background-color 0.3s, transform 0.3s;
margin-top: 10px;
}
button:hover {
background-color: #2674fc;
transform: translateY(-3px);
}
#ideaText {
margin-top: 10px;
margin-bottom: 30px;
font-size: 1.5em;
font-weight: bold;
color: #000;
transition: opacity 0.3s;
}
/* Adding a background gradient to the body */
body {
background: linear-gradient(135deg, #6a11cb, #2575fc);
}
/* Making the idea text more vibrant */
#ideaText {
background: linear-gradient(135deg, #43e97b, #38f9d7);
-webkit-text-fill-color: #000;
background-clip: text;
-webkit-background-clip: text;
}
/* Footer */
footer {
position: fixed;
bottom: 0;
width: 100%;
text-align: center;
padding: 10px;
background: transparent;
}
footer a {
margin: 0 15px;
display: inline-block;
font-size: 20px;
color: #000;
transition: transform 0.3s;
}
footer a:hover {
transform: scale(1.3);
}
/* Additional styling for better responsiveness */
@media (max-width: 768px) {
.container {
/* max-width: 80vw; */
padding: 30px 15px;
}
h1 {
font-size: 2em;
}
button {
font-size: 1em;
padding: 10px 20px;
}
#ideaText {
font-size: 1.3em;
}
footer a {
font-size: 2rem;
}
footer a:hover {
transform: scale(1);
}
}