-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
41 lines (36 loc) · 793 Bytes
/
stylesheet.css
File metadata and controls
41 lines (36 loc) · 793 Bytes
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
/* Req: Tag selector */
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
/* Req: ID selector */
#main-header {
text-align: center;
padding: 20px; /* Box model change 1 */
background-color: #3b4cca;
color: white;
}
/* Req: Class applied to two elements */
.content-section {
margin: 20px auto; /* Box model change 2 */
width: 80%;
border: 2px solid #ffde00;
padding: 15px;
background-color: white;
}
/* Styling the new list */
.tool-list li {
margin-bottom: 10px;
list-style-type: none;
}
/* Req: ID selector for the featured link */
#featured-link {
font-weight: bold;
color: #3b4cca;
text-decoration: underline;
}
/* Req: Hover effect on all links */
a:hover {
color: #ff0000;
transition: 0.3s;
}