-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
126 lines (104 loc) · 2.13 KB
/
index.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
body {
margin: 0;
padding: 0;
}
/* Animation frames */
@-webkit-keyframes bgImageSlide {
0% {background-position: center bottom;}
100% {background-position: center;}
}
@-webkit-keyframes contentSlide {
0% {top: 15%;}
100% {top: 25%;}
}
@keyframes bgImageSlide {
0% {background-position: center bottom;}
100% {background-position: center;}
}
@keyframes contentSlide {
0% {top: 0%;}
50% {top: 12%}
100% {top: 25%;}
}
.wrapper {
position: absolute;
background: maroon;
background: url('stevens_nyc2.jpg');
background-position: center;
height: 100%;
width: 100%;
overflow-x: hidden;
-webkit-animation-name: bgImageSlide;
-webkit-animation-duration: 3s;
animation-name: bgImageSlide;
animation-duration: 3s;
}
.wrapper > div {
position: absolute;
display: block;
top: 25%;
width: 100%;
text-align: center;
/*
-webkit-animation-name: contentSlide;
-webkit-animation-duration: 3s;
animation-name: contentSlide;
animation-duration: 3s;
*/
}
.header > h1, .header > h2 {
font-family: 'Orbitron', sans-serif;
color: maroon;
text-shadow: -2px 0 gray, 0 2px gray, 2px 0 gray, 0 -2px gray;
}
.header > h1 {
font-weight: 900;
font-size: 60px;
cursor: default;
}
.header > h2 {
font-weight: bold;
}
.interestForm {
margin-top: 30px;
}
input[type="email"], button {
border: 3px solid maroon;
padding: 10px;
border-radius: 8px;
background: white;
color: maroon;
margin: 0px 10px;
font-size: 20px;
min-width: 250px;
font-family: 'Jura', sans-serif;
font-weight: 500;
}
button {
min-width: 0;
}
input[type="email"]:focus {
border-color: lightgray;
outline: 0;
}
/*input[type="email"]::-webkit-input-placeholder {
color: pink;
}*/
button:hover {
border-color: lightgray;
}
button:focus {
outline: 0;
}
button:active {
outline: 0;
background: lightgray;
}
.noselect {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}