-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
143 lines (129 loc) · 2.47 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*General*/
*{
margin: 0;
padding: 0;
}
body{
background: white;
}
/*First Title*/
h1{
margin: 100px 0px 0px 297px;
color: white;
position: absolute;
font-family: 'Roboto', sans-serif;
font-size: xxx-large;
}
/*Box*/
#Container{
width: 100%;
height: 531px;
background: blueviolet;
position: initial;
margin: 54px 0px 0px 0px;
box-shadow: 0px 0 19px -2px rgb(0 0 0 / 70%);
}
/*Email Box*/
#Email{
width: 279px;
height: 30px;
border-radius: 8px;
border-style: none;
margin: 211px 0px 0px 256px;
background: blueviolet;
outline: none;
color: white;
font-size: medium;
}
/*Title Inside Email Box*/
#Email::placeholder{
color: white;
}
/*Line Below The Email Box*/
.line{
width: 281px;
height: 2px;
border-radius: 2px;
background: white;
margin: -2px 0px 0px 254px;
position: absolute;
}
/*Name Box*/
#Name{
width: 279px;
height: 30px;
border-radius: 8px;
border-style: none;
margin: 297px 0px 0px -280px;
background: blueviolet;
position: absolute;
outline: none;
color: white;
font-size: medium;
}
/*Title Inside Name Box*/
#Name::placeholder{
color: white;
}
/*Line Below The Name Box */
.line-02{
width: 281px;
height: 2px;
border-radius: 2px;
background: white;
margin: 83px 0px 0px 253px;
position: absolute;
}
/*Text Box*/
#text{
width: 271px;
height: 46px;
border-radius: 8px;
border-style: none;
border-color: white;
margin: 365px 0px 0px -280px;
background: blueviolet;
position: absolute;
outline: none;
color: white;
font-size: medium;
}
/*Text Inside Text Box*/
#text::placeholder{
color: white;
}
/*Line Below The Text Box*/
.line-03{
width: 281px;
height: 2px;
border-radius: 2px;
background: white;
margin: 161px 0px 0px 253px;
position: absolute;
}
/*Button*/
#button{
width: 72px;
height: 30px;
margin: 471px 0px 0px -184px;
background: white;
border-style: none;
box-shadow: 0px 11px 9px -7px #ffffffb0;
position: absolute;
border-radius: 9px;
cursor: pointer;
}
/*Image*/
.img{
width: 482px;
height: 390px;
background: url(./Img/image1.png);
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
position: absolute;
cursor: pointer;
border-radius: 10px;
margin: -472px 0px 0px 674px;
box-shadow: 2px 9px 60px rgb(0 0 0 / 61%);
}