-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-style.css
More file actions
76 lines (63 loc) · 1.25 KB
/
index-style.css
File metadata and controls
76 lines (63 loc) · 1.25 KB
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
html {
height: 100%;
}
body {
min-height: 100%;
background-image: url('index-background.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
vertical-align: middle;
display: flex;
justify-content: center;
align-items: center;
}
.centered {
margin: auto;
display: inline-block;
min-width: 50%;
}
.wordmark {
width: 100%;
height: 12em;
background-size: contain;
background-position: center;
background-repeat: no-repeat;
background-image: url('wordmark.svg');
margin-bottom: 4em;
}
a.button {
background-color: white;
border: 1px solid white;
color: black;
padding: 0.5em 1em;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 1.5em;
cursor: pointer;
white-space: nowrap;
transition-property: box-shadow;
transition-duration: 0.45s;
transition-timing-function: ease;
box-shadow: none;
}
a.button:hover {
box-shadow: 0px 0px 1em 0.25em white;
}
.helper {
display: inline-block;
height: 100%;
vertical-align: middle;
}
.github {
background-image: url('github-light.svg');
margin-right: .5em;
width: 1em;
height: 1em;
background-size: contain;
background-position: center;
background-repeat: no-repeat;
vertical-align: middle;
margin-bottom: auto;
}