-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (74 loc) · 1.12 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
body {
background-color: rgba(100, 100, 100, 1);
font-family: Palatino, sans-serif;
margin: 0;
padding: 0;
position: relative;
}
h1 {
margin-top: 2vh;
}
nav {
background-color: rgba(100, 100, 100, 1);
color: rgba(200, 200, 200, 1);
height: 50px;
min-width: 600px;
position: fixed;
top: 0;
width: 100%;
z-index: 1;
}
nav > * {
margin: 10px;
float: left;
}
nav > ul {
float: right;
list-style: none;
}
li {
float: left;
margin: 8px;
}
a {
text-decoration: none;
color: inherit;
transition: color .5s;
}
a:hover {
color: white;
}
#jqps {
top: 50px;
font-size: 3vw;
}
#fade {
left: 50%;
position: fixed;
text-align: center;
top: 40%;
transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
width: 80%;
}
#fade img {
width: 50%;
}
footer {
text-align: center;
color: rgb(255, 255, 175);
margin-bottom: 10px;
}
/* custom styling added */
.content {
margin: 20px;
}
.content > p {
background-color: rgba(255, 255, 255, 0.5);
border-radius: 5px;
padding: 10px;
margin-top: 500px;
}
.content > p:nth-of-type(1) {
margin-top: 100vh;
}