-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.css
79 lines (67 loc) · 1.37 KB
/
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
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
@font-face {
font-family: mint;
src: url(/assets/MintGroteskV1.0-Medium.woff2);
}
:root {
--gretaBlue: #1e90ff;
}
body {
background-image: url("assets/greta_teaser.jpg");
height: 100vh;
background-repeat: no-repeat;
background-size: cover;
color: white;
background-color: black;
font-family: mint, Arial, Helvetica, sans-serif;
color: var(--gretaBlue);
}
.title {
font-size: 2em;
margin-top: 30%;
margin-left: 5%;
}
.container {
margin-left: 5%;
margin-top: 50px;
}
.mailchimp {
margin-left: 5%;
margin-top: 50px;
}
.email {
border: 1px solid var(--gretaBlue);
background-color: transparent;
font-family: mint, Arial, Helvetica, sans-serif;
text-align: center;
color: var(--gretaBlue);
height: 30px;
width: 254px;
}
::placeholder {
color: var(--gretaBlue);
opacity: 1;
}
input[type=submit], input[type=button] {
-webkit-appearance: none;
-webkit-border-radius: 0;
border-radius: 0;
}
input:focus{
outline: none;
}
.button {
font-family: mint, Arial, Helvetica, sans-serif;
margin-top: 10px;
color: #fff;
background-color: var(--gretaBlue);
border: 1px solid var(--gretaBlue);
height: 40px;
opacity: 0.5;
font-size: 1em;
width: 260px;
}
@media only screen and (max-width: 600px) {
.title {
margin-top: 80%;
}
}