-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
214 lines (170 loc) · 4 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
*{
margin: 0; padding: 0; box-sizing: border-box;
transition:background 0.3s linear;
font-family: 'Oswald', sans-serif;
}
@font-face{
font-family: "Pacifico";
src: url("fonts/Pacifico/Pacifico-Regular.ttf")
}
.edina_tm_animation_text_word{
color: #ed2629;
font-size: 25px;
font-weight: 500;
}
@font-face{
font-family: "Oswald";
src: url("fonts/Oswald/Oswald.ttf")
}
.colorchange{
font-family: 'Pacifico', cursive;
animation: cc 2s infinite;
font-size: 60px;
}
@keyframes cc{
0%{color: red;}
25%{color:#bf55ec; ;}
50%{ color: white; }
100%{ color:#bf55ec; }
}
.leftside{
animation: cr 8s infinite;
animation-direction: alternate;
animation-timing-function: linear;
position: relative;
}
@keyframes cr{
0%{background-image: url("photos/1.jpg");background-size: 1140px 1011px;}
25%{background-image: url("photos/2.jpg");background-size: 1140px 1011px;}
50%{ background-image: url("photos/3.jpg");background-size: 1140px 1011px;}
100%{ background-image: url("photos/4.jpg");background-size: 1140px 1011px;}
}
.main-content{
position: absolute;
top: 0;
width: 100%;
z-index: -1;
}
.leftside{
background-image: linear-gradient(to left,rgba(0,0,0,0.1),rgba(0,0,0,0.2)),
url('photos/1.jpg');
width: 100%; height: 100vh;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.rightside{
background: #000;
}
.right-content h1{
font-size: 30px;
font-weight: 400;
letter-spacing: 0.06em;
line-height: 1.25;
padding: 30px 0 35px 0;
}
.right-content p{
border-left: 1px solid #555;
font-weight: 100;
font-family: 'Raleway', sans-serif;
padding: 50px 30px;
font-size: 0.9em;
}
button{
border:none;
background: #fff;
letter-spacing: 0.25em;
font-weight: 700;
font-size: 20px;
text-transform: uppercase;
color: #111;
padding: 15px 25px;
margin: 30px 0 0 30px;
transition:all 0.3s linear;
}
button:hover{
background: rgba(255,0,0,0.7);
color: white;
}
/* The popup form - hidden by default */
.form-popup {
display: none;
position: fixed;
bottom: 20px;
right: 40px;
border: 0px solid #f1f1f1;
z-index: 9;
background-color: black;
}
/* .form-popup button:hover{
transition-duration: 25s;
transition-timing-function: ease-in;
} */
.form-popup h1{
color: white;
text-align: center;
font-size: 35px;
font-weight: 400;
letter-spacing: 0.06em;
}
.form-popup label{
font-size: 20px;
letter-spacing: 0.06em;
}
/* Add styles to the form container */
.form-container {
max-width: 250px;
padding: 8px;
background-color: black;
}
/* Full-width input fields */
.form-container input[type=text], .form-container input[type=password] {
width: 100%;
padding: 15px;
margin: 5px 0 22px 0;
border: 1px;
border-radius: 15px;
border-style: ridge;
background: #f1f1f1;
}
/* When the inputs get focus, do something */
.form-container input[type=text]:focus, .form-container input[type=password]:focus {
background-color: #ddd;
outline: none;
}
/* Set a style for the submit/login button */
.form-container .btn {
background-color: white;
color: black;
padding: 16px 20px;
border: none;
cursor: pointer;
width: 80%;
margin-bottom:10px;
font-weight:700;
opacity: 0.8;
font-size: 20px;
}
.form-container input[type=submit]{
border:none;
background: #fff;
letter-spacing: 0.25em;
font-weight: 700;
font-size: 20px;
text-transform: uppercase;
color: #111;
padding: 15px 25px;
margin: 30px 0 0 30px;
transition:all 0.3s linear;
}
/* Add a red background color to the cancel button */
.form-container .cancel {
background-color: white;
color: black;
}
/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
opacity: 1;
background-color: rgba(255,0,0,0.7);
color: white;
}