-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss1.css
More file actions
84 lines (73 loc) · 1.73 KB
/
css1.css
File metadata and controls
84 lines (73 loc) · 1.73 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
/* Reset default margin and padding */
body, html {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #6fd1c1;
}
/* Navigation Menu */
.menu {
background-color: #333;
padding: 10px 0;
text-align: center;
color: #a40e0e; /* Set text color for menu */
}
.menu-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px;
}
.menu-title {
margin: 0;
font-size: 24px;
}
.menu-title a {
text-decoration: none;
color: #fff;
}
.back-link {
text-decoration: none;
}
.back-button {
background-color: #333;
border: none;
padding: 10px;
cursor: pointer;
font-size: 18px;
color: #fff;
border-radius: 5px;
text-transform: uppercase;
letter-spacing: 1px;
}
.back-button:hover {
background-color: #555;
}
/* Departments Section */
.departments {
padding: 20px;
text-align: center;
background-color: #fff; /* Background color for departments section */
border-radius: 5px; /* Rounded corners for departments section */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Box shadow for departments section */
margin: 20px; /* Margin around departments section */
}
.departments h2 {
margin: 0;
font-size: 28px; /* Larger font size for section heading */
color: #333; /* Text color for section heading */
}
.departments h2 a {
text-decoration: none;
color: #333;
display: inline-block;
padding: 10px 20px;
background-color: #eee; /* Background color for links */
border: 1px solid #ccc;
border-radius: 5px;
margin: 10px;
transition: background-color 0.3s ease;
}
.departments h2 a:hover {
background-color: #ddd; /* Darker background on hover */
}