-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSignUp.css
101 lines (97 loc) · 1.92 KB
/
SignUp.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
#navbar {
background-color: rgb(20, 20, 182);
display: flex;
justify-content: space-around;
gap:auto;
height: 59px;
align-items: center;
}
.nav>a {
color: white;
margin-right: 40px;
font-size: 20px;
text-decoration: none;
}
input,
button {
font-size: 20px;
}
#navbar>div {
margin: auto;
margin: 0px 15px 0px 15px;
}
@media all and (min-width:481px) and (max-width : 768px) {
#navbar {
background-color: rgb(20, 20, 182);
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
#navbar>div {
margin: auto;
margin: 0px 15px 0px 15px;
}
.nav>a {
color: white;
margin-right: 20px;
font-size: 16px;
text-decoration: none;
}
input,
button {
font-size: 16px;
}
input {
width: 50%;
}
/* #checkbox,#btn{
padding: 7px;
background-color: green;
margin-bottom: 10px;
} */
}
@media all and (min-width:170px) and (max-width : 480px) {
#navbar {
margin: auto;
height: auto;
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: 10px;
}
#navbar>div {
margin: auto;
padding-bottom: 14px;
padding-top: 10px;
}
.nav>a{
color: white;
margin-right: 10px;
font-size: 18px;
text-decoration: none;
}
input,
button {
font-size: 13px;
}
input {
width: 25%;
}
/* #checkbox,#btn{
padding: 7px;
background-color: green;
margin-bottom: 10px;
} */
}
#cant,#cant2{
margin: 80px;
}
#name,#mbl,#email,#pass,#conPass{
width: 100%;
font-size:16px;
padding: 8px;
margin:10px 0px 15px 0px;
}
#btn{
padding:8px;
background-color: green;
}