-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
121 lines (110 loc) · 2.36 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
body{
margin: 0%;
padding: 0%;
background: url(img1.jpg) no-repeat;
background-size: cover;
display: grid;
align-items: center;
justify-content: center;
height: 100vh;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.container{
width:50rem;
height: 35rem;
box-shadow: 0 0 1rem rgba(0, 0, 0, 2);
border-radius: 5px;
}
.container:hover{
background-color: rgba(0, 0, 0, 0.55);
}
.box{
align-items: center;
padding: 15px;;
}
::placeholder{
color: #fff;
opacity: 0.4;
}
#firstName{
width: 350px;
height: 2rem;
margin-top: 25px;
margin: 15px;
align-self: center;
text-align: center;
padding: 0.5rem;
border-radius: 15px;
background-color: rgba(0, 0, 0, 0.4);
color: #fff;
font-weight: bold;
font-size: 1rem;
transition: transition(45%, 45%);
border: 0;
margin-left: 200px;
margin-top: 50px;
}
#firstName:focus{
border-collapse: collapse;
}
#lastName{
width: 350px;
height: 2rem;
margin: 15px;
align-content: center;
text-align: center;
padding: 0.5rem;
border-radius: 15px;
background-color: rgba(0, 0, 0, 0.4);
color: #fff;
font-weight: bold;
font-size: 1rem;
border: 0;
margin-left: 200px;
margin-top: 40px;
}
#mobile{
width: 350px;
height: 2rem;
margin: 15px;
align-content: center;
text-align: center;
padding: 0.5rem;
border-radius: 15px;
background-color: rgba(0, 0, 0, 0.4);
color: #fff;
font-weight: bold;
font-size: 1rem;
border: 0;
margin-left: 200px;
margin-top: 40px;
}
#mail{
width: 350px;
height: 2rem;
margin: 15px;
align-content: center;
text-align: center;
padding: 0.5rem;
border-radius: 15px;
background-color: rgba(0, 0, 0, 0.4);
color: #fff;
font-weight: bold;
font-size: 1rem;
border: 0;
margin-left: 200px;
margin-top: 40px;
}
#btn{
width: 100px;
height: 45px;
border-radius: 50px;
border: 0;
background-color: rgba(0, 0, 0, 0.55);
color: #fff;
font-weight: bold;
font-size: 1.2rem;
font-stretch: wider;
margin-top: 50px;
margin-left: 350px;
}