-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
117 lines (98 loc) · 1.78 KB
/
Copy pathstyle.css
File metadata and controls
117 lines (98 loc) · 1.78 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
/* General Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
color: #333;
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 20px;
text-align: center;
}
h1, h2 {
color: #333;
margin-bottom: 20px;
}
h3{
color: #333;
margin-bottom: 20px;
}
img {
border-radius: 50%;
width: 150px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
/* Header Section */
header {
background: linear-gradient(to right, #77B6EA, #5D9CEC);
padding: 60px 0;
color: white;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
header h1 {
margin-top: 20px;
font-size: 2.5rem;
}
/* Section Styling */
section {
padding: 50px 20px;
}
#about, #contact {
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
padding: 40px 20px;
}
#hobbies .cards, #projects .cards {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
margin-top: 20px;
}
.card {
background: white;
border-radius: 10px;
padding: 20px;
width: 30%;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease-in-out;
}
.card:hover {
transform: scale(1.05);
}
.card h3 {
margin-bottom: 15px;
}
.card a {
color: #5D9CEC;
text-decoration: none;
font-weight: bold;
margin-top: 10px;
display: inline-block;
}
.card a:hover {
text-decoration: underline;
}
/* Social Media Icons */
.social-links a {
margin: 0 15px;
color: #5D9CEC;
font-size: 30px;
text-decoration: none;
}
.social-links a:hover {
color: #333;
}
/* Footer */
footer {
background-color: #333;
color: white;
padding: 20px 0;
text-align: center;
}