-
Notifications
You must be signed in to change notification settings - Fork 0
/
pastwebsitestyles.css
83 lines (70 loc) · 1.59 KB
/
pastwebsitestyles.css
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
body {
background-color: rgba(235, 184, 156, 0.23);
}
#banner {
position: relative;
top:5px;
width: 100%;
overflow-x: hidden;
object-fit: cover;
height: 110px;
}
#beaver {
position: absolute;
top:33px;
left:25px;
height: 70px;
border-radius: 50%;
z-index: 1;
}
ul.breadcrumb {
position: relative;
left:15px;
padding: 12px 16px;
/* list-style: none; */
background-color: #efc8c8;
border-radius: 25px;
width:fit-content;
}
/* Display list items side by side */
ul.breadcrumb li {
display: inline;
font-size: 24px;
}
/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
padding: 12px;
color: black;
content: "/\00a0";
}
/* Add a color to all links inside the list */
ul.breadcrumb li a {
color: #052f54;
text-decoration: none;
}
/* Add a color on mouse-over */
ul.breadcrumb li:not(#current) a:hover {
color: #01447e;
text-decoration: underline;
padding: 5px;
border-radius: 12px;
background-color: bisque;
box-shadow: 3px 3px 6px rgb(129, 231, 148);
}
#current {
text-decoration: none;
padding: 5px;
border-radius: 12px;
background-color: bisque;
box-shadow: 3px 3px 6px rgb(129, 231, 148);
}
.text{
margin-left: auto;
margin-right: auto;
text-align: center;
width: 1000px;
}
#expl {
font-size: 25px;
line-height: 40px;
}