-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
61 lines (52 loc) · 1006 Bytes
/
index.css
File metadata and controls
61 lines (52 loc) · 1006 Bytes
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
@font-face {
font-family: Titillium Web;
src: url('assets/fonts/Titillium_Web/TitilliumWeb-Regular.ttf');
}
/* https://css-tricks.com/snippets/css/scale-on-hover-with-webkit-transition */
.grow { transition: all .4s ease-in-out; }
.grow:hover {
transform: scale(1.1);
text-shadow: -2px -3px 19px black;
}
body {
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: rgb(73, 140, 198);
font-family: 'Titillium Web', sans-serif;
}
a {
color: whitesmoke;
text-decoration: none;
cursor: pointer;
}
a:hover {
color: white;
}
h1 {
font-size: 4em;
text-shadow: 3px 3px 2px black;
}
.wrapper {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100%;
}
.container {
text-align: center;
position: relative;
}
.inner {
margin-top: -24px;
}
footer {
position: absolute;
bottom: 0;
/* safari wants the left position */
left:0;
background-color: rgba(20, 20, 20, .33);
width: 100vw;
text-align: center;
}