forked from Shivika-5236/Number-To-Word-Converter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutstyle.css
More file actions
106 lines (91 loc) · 1.91 KB
/
aboutstyle.css
File metadata and controls
106 lines (91 loc) · 1.91 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
/* General Styles */
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
background-color: #fafafa; /* Light background */
color: #333; /* Dark text for better contrast */
}
header {
background-color: #c650fd; /* Purple background */
padding: 0.5rem 1rem;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 2px solid #9b4bc3; /* Light Pinkish-Purple */
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 2rem;
}
nav ul li a, nav .btn {
text-decoration: none;
color: white;
font-size: 1.1rem;
transition: color 0.3s ease;
}
nav ul li a:hover, nav .btn:hover {
color: #9b4bc3;
}
/* Welcome Section */
.welcome {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
padding: 5rem 3rem;
background-color: #eef2f3;
}
.welcome .content {
max-width: 60%;
}
.welcome .content h2 {
font-size: 3rem;
font-weight: bold;
margin-bottom: 2rem;
color: #4e46e2; /* Purple Text */
}
.welcome .content p {
font-size: 1.2rem;
color: #333;
margin-bottom: 2rem;
}
.welcome .content button {
padding: 0.5rem 1rem;
background-color: #b771db; /* Pinkish-Purple */
color: white;
border: none;
border-radius: 5px;
font-size: 1rem;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.2s ease;
}
.welcome .content button:hover {
background-color: #6c63ff; /* Blueish hover effect */
transform: scale(1.05); /* Slight button hover effect */
}
/* Footer */
footer {
padding: 2rem;
background-color: #333; /* Dark background */
color: white;
text-align: center;
}
footer .social-links a {
color: white;
text-decoration: none;
margin: 0 10px;
font-size: 1.1rem;
transition: color 0.3s ease;
}
footer .social-links a:hover {
color: #9b4bc3; /* Pinkish-Purple hover effect */
}
footer p {
margin-top: 1rem;
font-size: 1rem;
}