-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
107 lines (95 loc) · 1.74 KB
/
index.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
.btn-light,
.btn-light:hover,
.btn-light:focus {
color: #282828;
text-shadow: none; /* Prevent inheritance from `body` */
}
body {
text-shadow: .05rem .05rem .1rem #282828;
box-shadow: inset 0 .05 5rem #282828;
background-image: url('/home_assets/greenforest.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
animation: wallpaper 20s infinite both;
animation-duration: 30;
animation-delay: 3s;
animation-timing-function: ease-in-out;
}
@keyframes wallpaper{
10%
{
background-image: url(/home_assets/greenforest.jpg)
}
20%
{
background-image: url(/home_assets/forest.jpg)
}
30%
{
background-image: url(/home_assets/foresthill.jpg)
}
40%
{
background-image: url(/home_assets/mistyforest.jpg)
}
50%
{
background-image: url(/home_assets/lumberforest.jpg)
}
60%
{
background-image: url(/home_assets/autumnforest.jpg)
}
70%
{
background-image: url(/home_assets/blueforest.jpg)
}
80%
{
background-image: url(/home_assets/darkforest.jpg);
}
90%
{
background-image: url(/home_assets/greenforest.jpg)
}
}
.cover-container {
max-width: 100em;
}
.nav-masthead .nav-link {
color: #928374;
border-bottom: .15rem solid transparent;
}
.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
border-bottom-color: #928374;
}
.nav-masthead .nav-link + .nav-link {
margin-left: 1rem;
}
.nav-masthead .active {
color: #fbf1c7;
border-bottom-color: #aca68f;
}
h1 {
color: #ebdbb2;
font-weight: bold;
font-size: 64px;
}
h2 {
color: #d5c4a1;
}
h3 {
color: #fbf1c7;
text-shadow: 1px 1px #6a4a00;
font-weight: bold;
font-size: 32px;
font-style: oblique;
}
h4 {
color: #6a4a00;
}
p {
color: #d5c4a1;
}