-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (61 loc) · 1.25 KB
/
style.css
File metadata and controls
75 lines (61 loc) · 1.25 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
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Tangerine:wght@700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
margin: 0px;
}
header {
background: rgb(0,0,0);
background: linear-gradient(1deg, #000 0%, #000 25%, #600027 48%, #ff8eab 50%, #600027 52%, #000 75%, #000 100%);
}
h1 {
font-size: 48px;
color: #000;
text-shadow: #e0005a 0 0 4px;
font-weight: 100;
font-family: 'Cinzel', serif;
/* font-family: 'Tangerine', cursive; */
text-align: center;
}
div.content {
display: flex;
}
div.sidebar {
background: black;
color: #e0005a;
width: 10em;
}
nav {
position: sticky;
height: min-content;
top: 0;
}
div.main {
width: 90%;
}
section {
margin: 10px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
section *{
width: 50em;
max-width: 90%;
}
/*.navOption {
font-size: 32px;
background: rgb(0,0,0);
color: #600027;
}
.navOption:hover {
animation-name: navHover;
animation-duration: 4s;
}
@keyframes navHover {
from {background: rgb(0,0,0);}
to {background: linear-gradient(1deg, #000 0%, #000 25%, #600027 48%, #ff8eab 50%, #600027 52%, #000 75%, #000 100%);}
}