-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (94 loc) · 2.58 KB
/
style.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
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
@font-face {
font-family: Open;
src: url(fonts/OpenSans-Light.ttf); }
@font-face {
font-family: OpenR;
src: url(fonts/OpenSans-Regular.ttf); }
body {
height: 100vh;
width: 100vw;
margin: auto auto;
display: flex;
align-items: center;
justify-content: center;
background-color: #171717;
font-family: Open;
letter-spacing: 0.1em; }
body header {
max-width: 800px;
width: 90vw;
margin-top: -5em; }
body header .logo {
width: 100%;
display: flex;
flex-direction: row;
justify-items: center;
align-content: center;
justify-content: center;
/* position: relative; */
/* top: 231px; */
max-width: 800px; }
body header .logo img {
width: auto;
height: 100%; }
@media screen and (max-width: 590px) {
body header .logo {
flex-direction: column; }
body header .logo img {
width: 100%;
height: auto; }
body header .logo .badge {
/* max-width: 50vw; */
width: 40vw;
margin: 0 auto 1.5vh auto; }
body header .logo .wordmark {
width: 80vw;
margin: 0 auto; } }
body header main {
padding-left: 28%;
font-size: 20px;
color: white; }
body header main p {
margin: 1em 0 0.5em 0;
font-size: 24px;
color: #c9c9c9; }
@media screen and (max-width: 590px) {
body header main p {
width: 220px;
margin: 1.2em auto 1em auto; } }
body header main .contact {
display: inline-block;
padding: 0.25em 0.75em;
font-family: OpenR;
font-size: 20px;
text-align: center;
color: rgba(0, 0, 0, 0.9);
background-color: #FF8E21;
text-decoration: none;
border-radius: 0.2em;
letter-spacing: 0.03em;
transition: all 0.1s; }
body header main .contact:hover {
background-color: #EC5613; }
@media screen and (max-width: 590px) {
body header main .contact {
margin: 0;
display: block;
position: fixed;
bottom: 40px;
width: auto;
left: 10px;
right: 10px; } }
@media screen and (max-width: 590px) {
body header main {
padding-left: 0em; } }
body footer {
width: 100vw;
display: block;
position: fixed;
bottom: 3px;
color: #a2a2a4;
text-align: center;
margin: 0 auto;
font-size: 11px; }
/*# sourceMappingURL=style.css.map */