This repository was archived by the owner on Jul 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.css
More file actions
108 lines (91 loc) · 1.48 KB
/
page.css
File metadata and controls
108 lines (91 loc) · 1.48 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
* {
margin: 0;
padding: 0;
}
.github-corner:hover .octo-arm {
animation: octocat-wave 560ms ease-in-out
}
@keyframes octocat-wave {
0%,
100% {
transform: rotate(0)
}
20%,
60% {
transform: rotate(-25deg)
}
40%,
80% {
transform: rotate(10deg)
}
}
@media (max-width:500px) {
.github-corner:hover .octo-arm {
animation: none
}
.github-corner .octo-arm {
animation: octocat-wave 560ms ease-in-out
}
}
html,
body {
min-height: 100vh;
width: 100%;
}
body {
font-family: 'EB Garamond', sans-serif;
display: flex;
align-items: center;
justify-content: stretch;
background: #0c7c5c;
color: white;
text-align: center;
}
.phonetics {
font-style: italic;
}
h1 {
font-size: 4rem;
}
h2 {
font-size: 1.5rem
}
h1,
h2 {
text-shadow: 0px 0px 1px darkgray;
}
p {
padding-top: 2.5rem;
font-size: 1.6rem;
}
main {
flex: 1 1 auto;
}
.logo {
margin: 2em 0;
}
.mission-statement {
font-style: italic;
}
.mission-statement > .highlight {
font-weight: bold;
}
.vision-wrapper {
display: flex;
flex-direction: row;
background: rgba(0, 0, 0, 0.5);
justify-content: center;
}
.vision-statement {
max-width: 400px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding: 2rem;
}
.vision-statement > .quotemark {
line-height: 1em;
font-size: 2em;
color: #29A6A6;
}