-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathstyle.css
153 lines (131 loc) · 2.66 KB
/
style.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
@import url("https://use.typekit.net/jmk3xov.css");
canvas {
position: fixed;
top: 0;
left: 0;
}
:root {
--dark-bg: rgba(15, 15, 15, 0.95);
--spacing: 350px;
font-family: brandon-grotesque, sans-serif;
font-weight: 400;
font-style: normal;
}
html{
scroll-behavior: smooth;
}
main {
width: 100vw;
color: white;
z-index: 99;
position: absolute;
width: 100%;
margin: 0px auto;
padding: 120px 0px;
/* Create 12 seperate column */
display: grid;
grid-template-columns: repeat(12, 1fr);
}
h1, h2, h3, blockquote {
font-family: elevon, sans-serif;
font-weight: 700;
font-style: normal;
}
canvas {
position: fixed;
top: 0;
left: 0;
}
header {
background: var(--dark-bg);
grid-column: 2 / span 10;
font-size: 2.5rem;
padding: 2rem;
margin-bottom: var(--spacing);
}
section {
grid-column: 2 / 8;
padding: 1rem;
background: var(--dark-bg);
font-size: 1.25rem;
line-height: 1.5;
margin-top: 10rem;
margin-bottom: var(--spacing);
}
.padding{
padding: 2rem;
background:none;
}
blockquote {
margin: 0;
padding: 0;
grid-column: 2 / span 9;
margin-bottom: var(--spacing);
}
blockquote p {
color: black;
background-color: white;
font-size: 4rem;
display: inline;
line-height: 1;
}
.left {
grid-column: 6 / 12;
}
.topnav {
/* background-repeat:repeat; */
/* overflow: hidden; */
position: fixed;
top: 0;
left: 0;
right: 0;
display: flex;
justify-content: flex-end;
align-items: center;
padding-right: 10px;
padding-left: 10px;
/* padding: 2px 50px; */
/* box-shadow: 0 1px 8px */
}
.topnav h1{
background-image:url('sun.gif');
border-radius: 5px;
height: 50px;
width: 170px;
text-align: center;
background-size: 100%;
color:#908cdc ;
background-position: center;
margin-right: auto;
}
/* Style the links inside the navigation bar */
.topnav a {
/* float: left; */
color: #f2f2f2;
text-align: center;
padding: 19px 16px;
border-radius:5px;
text-decoration: none;
font-size: 17px;
transition: all 0.3s ease 0s;
}
.btn{
list-style: none;
}
.topnav a:hover{
background-color: #ddd;
/* background-image:url('planets.gif'); background-repeat:repeat; */
background-position: center;
color: black;
}
/* Add a color to the active/current link */
a.active {
background-image:url('planets1.gif');
background-repeat:repeat;
background-size: cover;
background-position: center;
font-weight: bold;
font-size: 20px;
/* background-color: #ddd; */
color: white;
}