-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyle.CSS
More file actions
47 lines (41 loc) · 1.03 KB
/
Copy pathStyle.CSS
File metadata and controls
47 lines (41 loc) · 1.03 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
body {
background-color: #0a0a0a; /* Glowy black for the background */
font-family: Arial, Helvetica, sans-serif;
display: flex;
flex-wrap: wrap;
}
h1 {
color: #006400; /* Dark green for the headings */
text-align: center;
width: 100%;
display: block;
}
h1:hover {
color: #00008b; /* Dark blue for the hover state of headings */
text-align: center;
width: 100%;
display: block;
}
a {
text-decoration: none;
color: #006400; /* Dark green for the links */
}
.assign {
background-color: #f0f0f0; /* Grayish-white for the assignment boxes */
margin: 10px;
padding: 10px;
border-radius: 20px;
width: 20%;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5); /* Shadow for depth */
display: block; /* instead of flex */
}
.assign img {
width: 200px;
margin: 10px;
border: 2px solid #d3d3d3; /* Lighter gray for a subtle border */
}
.assign img:hover {
width: 200px;
margin: 10px;
border: 2px dotted #00008b; /* Dark blue for the hover effect on images */
}