-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (83 loc) · 2.08 KB
/
style.css
File metadata and controls
101 lines (83 loc) · 2.08 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
/* --- Global Styles & Issues --- */
@import url('https://fonts.googleapis.com/css2?family=Kablammo&display=swap');
body {
/* Issue: Change the default font */
font-family: "Kablammo",serif;
margin: 0;
padding: 0;
/* Issue: Change the page's background color */
background-color: #f4f4f4;
color: #333;
}
.container {
width: 90%;
margin: 20px auto;
background-color: #fff;
/* Issues: Add padding, a border, rounded corners, a box-shadow, and a max-width */
/* hi */
}
a {
/* Issue: Remove the underline */
text-decoration: underline;
color: #007BFF;
}
/* --- Header & Navigation Issues --- */
header {
background-color: #333;
color: white;
}
nav ul {
/* Issue: Remove bullet points and default padding */
list-style-type: none;
padding: 10px;
margin: 0;
/* Issue: Make this a horizontal menu (e.g., using flexbox) */
}
nav ul li a {
color: white;
/* Issue: Add padding for easier clicking */
}
/* Issue: Add a style for the active navigation link */
.active {
/* (e.g., text-decoration: underline; font-weight: bold;) */
}
/* --- Index Page Issues --- */
.profile-pic {
width: 150px;
display: block;
margin: 20px auto;
/* Issue: Make the profile picture a circle */
border-radius: 0;
}
/* --- Projects Page Issues --- */
.project-gallery {
/* Issue: Style this as a responsive grid */
}
.project-card {
/* Issue: Style the project cards (border, padding, etc.) */
margin-bottom: 20px;
}
.project-card img {
max-width: 100%;
}
/* --- Contact Page Issues --- */
form {
/* Issue: Add some spacing between form elements */
}
form input,
form textarea {
display: block;
width: 90%;
/* Issue: Style these inputs to be more user-friendly */
padding: 5px;
margin-bottom: 10px;
}
form button {
/* Issue: Style this button to be more prominent */
background-color: #ddd;
border: 1px solid #ccc;
padding: 10px 15px;
cursor: pointer;
}
/* --- Responsive Design Issues --- */
/* Issue: Add media queries to make the site usable on mobile devices */