-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwork.css
More file actions
56 lines (45 loc) · 1.01 KB
/
work.css
File metadata and controls
56 lines (45 loc) · 1.01 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
/* styles.css */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
.bg-yellow {
background-color: #FFF9C4; /* Light yellow color */
}
.bg-image {
background-size: cover;
background-position: center;
transition: filter 0.3s ease;
height: 100vh; /* Full viewport height */
}
.projects-section {
background-image: url('images/project.jpg'); /* Replace with your image URL */
}
.assignments-section {
background-image: url('images/assignments.jpeg'); /* Replace with your image URL */
}
.text-overlay {
color: white;
font-size: 3rem;
font-weight: bold;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.projects-section:hover, .assignments-section:hover {
filter: brightness(1.2); /* Makes the image appear brighter on hover */
}
.navbar-toggler-icon {
color: #333; /* Dark color for the toggler icon */
}
.no-gutters {
margin-right: 0;
margin-left: 0;
}
.no-gutters > .col, .no-gutters > [class*="col-"] {
padding-right: 0;
padding-left: 0;
}
.blank{
position: absolute;
left:10px;
}