-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreg.css
More file actions
84 lines (71 loc) · 1.08 KB
/
reg.css
File metadata and controls
84 lines (71 loc) · 1.08 KB
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
*{
margin: 0;
padding: 0;
}
body{
width: 100vw;
height: 100vh;
background-color:#F28585 ;
display: grid;
place-items: center;
}
.container{
background-color: white;
width: 420px;
padding: 20px;
height:730px;
border-radius: 6px;
margin-top: 10px;
}
h1{
margin-top: 7px;
text-transform: uppercase;
text-align: center;
}
.formgroup{
margin-top: 6px;
padding: 5px;
}
form{
padding: 30px 40px;
}
.formgroup input{
border: 1px solid ;
width: 100%;
padding: 9px;
border-radius: 3px;
display: block;
}
button{
width: 100%;
margin-top: 13px;
margin-left: 10px;
padding: 5px;
background-color: blue;
color: white;
}
#pass
{
margin-top: 5px;
margin-right:5px;
height:15px;
width:325px;
border-radius:3px;
border:1px solid grey;
padding:11px;
font-size:13px;
}
#pass_type
{
font-size:15px;
margin-bottom: 3px;
margin-left:45%;
text-align:center;
color:rgb(10, 9, 9);
}
@media (max-width:400px){
.coantainer{
background-color: white;
width: 250px;
}
}