-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathregistration.css
157 lines (131 loc) · 2.69 KB
/
registration.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
body{
font-family: sourse Sans pro;
background: rgb(248, 242, 242);
background-size: cover;
width: 100%;
}
/* navbar styling */
.navbar
{
position: fixed;
margin: 0px;
padding: 0px;
width: 99%;
overflow: hidden;
/* background:url(background.jpg) no-repeat center; */
background-color: rgb(65, 132, 158);
border-radius: 10px;
}
.symbole
{
font-size: 30px;
font-weight: bolder;
color:white;
}
.navbar-style
{
padding: 1%;
display: flex;
align-items: center;
justify-content: space-between;
width:100%;
color:white;
}
.input-field1{
position:absolute;
left: 25%;
font-family: sourse Sans pro;
font-size: larger;
border-radius: 5px;
border-style: none;
width: 40%;
}
/* link styling */
.li
{
font-size: 20px;
text-decoration: none;
display: inline-block;
margin-left: 15px;
margin-right: 18px;
color:white;
font-weight: 1px;
}
/* link hover effects */
.li::after{
content: '';
display: block;
width: 0;
height: 2px;
opacity: 0.7;
background: -webkit-linear-gradient(left , rgb(193, 191, 212) , rgb(196, 89, 63));
transition: 0.3s;
}
.li:hover::after{
width:110%;
transition: width .4s;
color: rgb(224, 189, 185);
}
/* input field */
input{
height:30px;
opacity:.5;
/* border-style:none; */
}
* {box-sizing: border-box;}
.contact{
align-self: center;
max-width:500px;
padding-right: 13px;
padding-left: 13px;
padding-bottom: 13px;
background-color: rgb(248, 242, 242)
}
.box{
box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
min-height: 200px;
width: 50vw;
margin: 50px auto;
background: rgb(248, 242, 242);
border-radius: 5px;
}
.input-icons i {
position: absolute;
}
.input-icons {
width: 100%;
margin-bottom: 10px;
}
.icon {
padding: 10px;
color: green;
min-width: 50px;
text-align: center;
}
.input-field {
width: 100%;
padding: 10px;
text-align: center;
}
/* Set a style for the submit button */
.btn {
background-color: dodgerblue;
color: white;
padding: 15px 20px;
border: none;
cursor: pointer;
width: 100%;
opacity: 0.9;
}
.btn:hover {
opacity: 1;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: rgb(110, 180, 212);
color: white;
text-align: center;
}