-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
151 lines (127 loc) · 2.21 KB
/
style.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
141
142
143
144
145
146
147
148
149
150
151
/* Reset CSS */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
color: #333;
line-height: 1.6;
}
.container {
width: 90%;
max-width: 800px;
margin: auto;
padding: 20px;
}
h1, h2, h3 {
font-family: 'Montserrat', sans-serif;
color: #444;
}
h1 {
font-size: 2.5em;
margin-bottom: 0.5em;
}
h2 {
font-size: 2em;
margin-bottom: 0.4em;
}
h3 {
font-size: 1.3em;
margin-bottom: 0.3em;
}
/* Header Styles */
header {
background-color: #007acc;
color: #fff;
padding: 30px 20px;
text-align: center;
}
header h1 {
color: #fff;
}
header p {
margin-top: 10px;
}
/* Section Styles */
section {
margin: 20px 0;
}
section#about p, section#portfolio .project p {
margin-top: 10px;
}
section#skills ul {
margin-left: 20px;
}
/* Portfolio Section */
#portfolio h2, h3 {
color: #007acc;
}
#portfolio a {
text-decoration: none;
}
.portfolio-note {
margin-top: 15px;
font-style: italic;
color: #555;
}
.project {
background-color: #f4f4f4;
padding: 10px 15px;
margin-top: 10px;
border-left: 4px solid #007acc;
}
.project a {
margin-left: 5px;
color: #007acc;
text-decoration: none;
}
.project a:hover {
color: #009900;
}
.project a span {
text-decoration: underline;
}
.project-tech {
display: flex;
flex-wrap: wrap;
gap: 10px;
list-style: none;
padding: 0;
margin: 5px;
}
.project-tech li {
background-color: #e0f2f7;
color: #0d47a1;
padding: 4px 8px;
border-radius: 5px;
display: inline-block; /* Necessary for applying padding and border-radius correctly */
font-size: 12px;
font-weight: 500;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); /* Subtle shadow */
}
.project-description {
padding-left: 20px;
margin: 0 5px;
}
/* Contact Styles */
#contact h2, h3 {
color: #007acc;
}
#contact a {
color: #007acc;
text-decoration: none;
}
#contact a:hover {
text-decoration: underline;
}
/* Footer Styles */
footer {
text-align: center;
padding: 10px;
background-color: #333;
color: #fff;
font-size: 0.9em;
margin-top: 20px;
}