-
Notifications
You must be signed in to change notification settings - Fork 1
/
ngoform.css
72 lines (69 loc) · 1.6 KB
/
ngoform.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
body{
font-family: Calibri, Helvetica, sans-serif;
background-color: rgb(255, 255, 255);
font-family: 'Montserrat',sans-serif;
}
.container {
padding: 50px;
background-color:#eee284;
border: 1px solid;
border-radius: 35px;
padding: 10px;
box-shadow: 5px 10px 8px 10px #646464;
width: 50%;
margin: auto;
color: rgb(0, 0, 0);
-webkit-border-radius: 35px;
-moz-border-radius: 35px;
-ms-border-radius: 35px;
-o-border-radius: 35px;
}
input[type=text], input[type=password], input[type=number] {
width: 100%;
padding: 15px;
margin: 5px 0 22px 0;
display: inline-block;
border: none;
border-radius: 10px;
background-color: #fff;
opacity: 100%;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
}
input[type=text]:focus, input[type=password]:focus ,input[type=number]:focus {
background-color: #fff;
outline: none;
opacity: 100%;
}
div {
padding: 10px 0;
}
hr {
border: 1px solid #f1f1f1;
margin-bottom: 25px;
}
.registerbtn {
background-color: #4CAF50;
color: white;
padding: 16px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
opacity: 0.9;
}
.registerbtn:hover {
opacity: 1;
}
.navigation-bar{
margin:0 20%;
}
textarea{
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
}