-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiss-mushy.css
117 lines (101 loc) · 2.29 KB
/
miss-mushy.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
.afacad-flux{
font-family: "Afacad Flux", serif;
font-optical-sizing: auto;
font-weight: auto;
font-style: normal;
font-variation-settings:
"slnt" 0;
}
.meow-script-regular{
font-family: "Meow Script", serif;
font-weight: 400;
font-style: normal;
}
body{
background-image: url('https://i.pinimg.com/736x/b5/b3/2e/b5b32ef8dcf845c1dfc90fe753eafa9a.jpg');
background-position: 0px 0px 0px;
background-size: 1000%;
backdrop-filter: blur(25%);
background-repeat: no-repeat;
}
footer{
font-family: "Afacad Flux", serif;
color: black;
text-align: center;
width: 300px;
margin: auto;
}
footer a{
font-family: "Afacad Flux", serif;
color: crimson;
text-align: center;
text-decoration: none;
font-style: italic;
width: 300px;
margin: auto;
}
header{
font-family: "Afacad Flux", serif;
color: crimson;
height: auto;
display: grid;
align-items: center;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
column-gap: 5px;
}
header h2{
text-align: center;
}
header a{
color: crimson;
}
nav{
font-family: "Afacad Flux", serif;
height: auto;
display: grid;
align-items: center;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
column-gap: 5px;
}
nav a{
color: crimson;
}
/* Dropdown Button */
.dropbtn {
background-color: #b88aca;
color: white;
padding: 16px;
font-size: 16px;
font-family: "Afacad Flux", serif;
border: none;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
position: relative;
display: inline-block;
font-family: "Afacad Flux", serif;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
font-family: "Afacad Flux", serif;
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
font-family: "Afacad Flux", serif;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #e2a9f8;}