-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
111 lines (92 loc) · 1.71 KB
/
styles.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
/* Reset some default styles */
body, h1, h2, h3, p {
margin: 0;
padding: 0;
}
/* Global Styles */
body {
font-family: 'Roboto', sans-serif;
background-color: #f0f0f0;
color: #333;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
background-color: #007bff;
color: #fff;
padding: 20px;
text-align: center;
}
header h1 {
font-size: 36px;
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
background-color: #333;
padding: 10px 0;
}
nav li {
margin-right: 20px;
}
nav a {
text-decoration: none;
color: #fff;
transition: color 0.3s;
}
nav a:hover {
color: #ff9900;
}
/* Bootstrap-based Section Styles */
.section {
background-color: #fff;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 5px;
}
.section h2 {
font-size: 28px;
margin-bottom: 15px;
color: #007bff;
}
ul {
list-style: disc;
margin-left: 20px;
margin-top: 10px;
}
.project, .experience {
margin-bottom: 30px;
border-left: 4px solid #ff9900;
padding-left: 15px;
}
/* Add more specific styles for Bootstrap classes if needed */
/* Responsive Styles */
@media (max-width: 768px) {
nav ul {
flex-direction: column;
align-items: center;
}
nav li {
margin: 10px 0;
}
}
.projects {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 20px;
}
.project-card {
border: 1px solid #ddd;
padding: 15px;
border-radius: 5px;
transition: transform 0.2s;
}
.project-card:hover {
transform: translateY(-5px);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}