-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
48 lines (40 loc) · 1015 Bytes
/
styles.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
body {
margin: 0;
background-image: linear-gradient(to bottom left, #001433, #003380); /* Creates the background gradient */
}
.splash{
margin: 0;
height: 100vh; /* 100vh will take the entire monitor height */
}
.about{
height: 200vh;
}
.splash-content{
text-align: center;
height: 40vh;
padding: 30vh 30vw; /* Will pad items into a smaller box */
}
.splash-content img {
width: 25vmin;
height: 25vmin;
filter: sepia(100%) hue-rotate(180deg) saturate(4) brightness(110%); /* Modifying how the picture looks to match the background */
}
h1, h2, p {
color: white;
font-family: 'Montserrat', sans-serif;
letter-spacing: 3px; /* Spread letters out a bit more */
text-align: center;
}
td {
padding: 1em;
width: 33%; /* Will force the cells to take 1/3 of the space. This will make them equal width if there are 3 cells */
}
canvas {
display: block;
margin: 0 auto;
background-color: #000; /* Background colour for the canvas */
}
.about-content {
text-align: center;
padding: 10vh 5vw;
}