-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.css
54 lines (44 loc) · 817 Bytes
/
home.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
html {
height: 100%;
}
/* body {
background: url(imgs/background.jpg);
background-size: cover;
background-position: center;
} */
h1 {
font-weight: 100;
font-size: 6rem;
}
.container {
background: rgba(0, 0, 0, 0.5);
}
.disclaimer {
font-size: .5rem;
}
p {
font-weight: 100;
}
a {
color: white;
text-decoration: none;
}
a:hover {
color: black;
text-decoration: none;
text-shadow: 2px 2px 100px #white;
transition: .5s;
}
.jumbotron {
background: none;
color: white;
height: 100%;
width: 100%;
font-weight: 200;
}
.vertical-center {
min-height: 100%; /* Fallback for browsers do NOT support vh unit */
min-height: 100vh; /* These two lines are counted as one :-) */
display: flex;
align-items: center;
}