-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
125 lines (112 loc) · 2.37 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
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
@import url("http://fonts.cdnfonts.com/css/sansation");
@import url("https://fonts.googleapis.com/css2?family=Scheherazade+New:wght@400;700&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.contact-container {
background-image: linear-gradient(rgba(55, 101, 216, 0.389),rgba(55, 101, 216, 0.389)),url(images/disney.jpg);
background-size:cover;
height: 100vh;
}
.right {
position: absolute;
width: 360px;
left: 60%;
height: 580px;
top: calc(50% - 580px / 2);
background: #ffffff;
border-radius: 25px;
text-align: center;
}
.title {
font-family: Sansation;
font-style: normal;
font-weight: bold;
font-size: 25px;
line-height: 145px;
align-items: center;
font-family: "Sansation", sans-serif;
color: #0000FD;
}
.logo {
width: 152px;
height: 120px;
margin-top: -40px;
}
input[type="email"],
input[type="password"] {
border: none;
outline: none;
background: none;
font-size: 20px;
color: #0000FD;
padding: 20px 10px 20px 5px;
border: 2px solid #568aee;
width: 280px;
height: 45px;
margin: 15px;
border-radius: 25px;
box-sizing: border-box;
text-align: center;
overflow: hidden;
font-family: "Scheherazade New", serif;
}
input[type="checkbox"] {
vertical-align: middle;
margin-right: 3px;
margin-bottom: 3px;
font-weight: bold;
height: 18px;
width: 18px;
}
::placeholder {
color: #85b6ff;
font-size: 18px;
}
.icon {
position: absolute;
padding: 24px 32px;
height: 75px;
width: 90px;
}
.keepme {
margin: 15px;
color: #71a1bd;
font-family: "Scheherazade New", serif;
font-weight: bold;
}
button {
width: 260px;
height: 45px;
left: 1273px;
top: 780px;
font-family: "Sansation", sans-serif;
font-style: normal;
font-weight: bold;
font-size: 20px;
line-height: 28px;
cursor: pointer;
color: #ffffff;
border: none;
background: rgba(135, 113, 224, 0.89);
border-radius: 25px;
}
.link {
text-align: center;
display: block;
margin: 18px;
color: #71a1bd;
font-family: "Scheherazade New", serif;
font-weight: bold;
text-decoration: none;
}
@media only screen and (max-width: 700px) {
.contact-container {
background: linear-gradient(138.56deg, #318adc 23.44%, #88183a 89.5%);
}
.right {
left: calc(68% - 500px / 2);
}
}