-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (43 loc) · 934 Bytes
/
Copy pathstyle.css
File metadata and controls
43 lines (43 loc) · 934 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
42
43
body {
background: radial-gradient(circle, rgb(225, 236, 234) 40%, #e3e8e9 60%);
}
h1 {
color: black;
font-style: italic;
font-family: "Times New Roman", Times, serif;
}
.content {
background: rgba(226, 247, 243, 0.801);
border-radius: 1rem;
margin-inline: 25rem;
margin-block: 4rem;
width: 50%;
padding: 2rem;
}
.content2 {
background: rgba(226, 247, 243, 0.801);
text-align: center;
color: black;
padding: 13rem;
border-style: solid;
}
.topnav a.active {
background-color: rgb(219, 123, 123);
color: black;
border-inline-end: 0.4rem solid black;
}
.topnav a {
color: black;
text-align: center;
padding: 0.5rem;
text-decoration: none;
font-size: 1rem;
border-radius: 3rem;
border-inline-end: 0.4rem solid black;
}
.topnav a:hover {
background-color: #ddd;
color: black;
border-radius: 3rem;
border-inline-end: 0.4rem solid black;
}