-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (92 loc) · 1.55 KB
/
style.css
File metadata and controls
107 lines (92 loc) · 1.55 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
/* RESET */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', sans-serif;
background: #0f172a;
color: #e2e8f0;
transition: 0.3s;
}
/* HERO */
#hero {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(135deg, #1e293b, #0f172a);
text-align: center;
}
.hero-content h1 {
font-size: 3rem;
}
.hero-content button {
margin-top: 20px;
padding: 10px 20px;
border: none;
background: #38bdf8;
color: black;
cursor: pointer;
border-radius: 8px;
}
/* CARD (Glass effect) */
.card {
margin: 40px;
padding: 20px;
border-radius: 15px;
background: rgba(255,255,255,0.05);
backdrop-filter: blur(10px);
}
/* SKILLS */
#skills {
padding: 40px;
}
.skill-list span {
background: #1e293b;
padding: 10px;
margin: 5px;
display: inline-block;
border-radius: 8px;
}
/* PROJECTS */
#projects {
padding: 40px;
}
.project-card {
background: #1e293b;
padding: 20px;
margin-top: 20px;
border-radius: 12px;
transition: transform 0.3s, box-shadow 0.3s;
}
.project-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
/* CONTACT */
#contact {
text-align: center;
}
/* DARK MODE LIGHT */
.light-mode {
background: #f1f5f9;
color: #0f172a;
}
.light-mode .project-card {
background: white;
}
.light-mode .card {
background: rgba(0,0,0,0.05);
}
/* TOGGLE BUTTON */
#theme-toggle {
position: fixed;
top: 20px;
right: 20px;
padding: 10px;
border: none;
cursor: pointer;
border-radius: 50%;
}