-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
129 lines (111 loc) · 1.91 KB
/
Copy pathstyles.css
File metadata and controls
129 lines (111 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/* Basic Styling */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}
/* Dark Theme Setup */
body {
background-color: #000;
color: #fff;
line-height: 1.6;
transition: 0.5s ease;
}
/* Header & Navigation */
header {
padding: 20px 10%;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
width: 100%;
top: 0;
z-index: 10;
background: rgba(0, 0, 0, 0.8);
}
/* Logo Styling */
.logo {
font-size: 28px;
font-weight: bold;
color: orange;
}
.logo span {
color: #f43f5e;
}
/* Navigation Menu */
nav ul {
display: flex;
list-style: none;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
color: #aaa;
text-decoration: none;
transition: 0.3s ease;
}
nav ul li a:hover {
color: #f43f5e;
}
/* Dark/Light Mode Toggle */
#darkModeToggle {
background: none;
color: #fff;
font-size: 20px;
cursor: pointer;
border: none;
}
/* Home Section Styling */
.home {
display: flex;
justify-content: space-around;
align-items: center;
min-height: 100vh;
padding: 50px;
text-align: left;
}
/* Text Animations */
.content h1 {
font-size: 50px;
color: blue;
}
.content h1 span {
color: #f43f5e;
}
.content h2 span {
color: #f43f5e;
border-right: 3px solid #f43f5e;
white-space: nowrap;
overflow: hidden;
}
/* Contact Form */
#contact {
padding: 20px;
text-align: center;
}
form input,
form textarea {
width: 300px;
padding: 10px;
margin: 10px 0;
border: none;
border-radius: 5px;
}
form button {
padding: 10px 25px;
background: #f43f5e;
color: #fff;
border: none;
border-radius: 5px;
}
/* Light Mode Style */
.light-mode {
background-color: #fff;
color: #333;
}
.light-mode header {
background: rgba(255, 255, 255, 0.9);
}