-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
53 lines (49 loc) · 1.14 KB
/
main.css
File metadata and controls
53 lines (49 loc) · 1.14 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
.container{
justify-content: center;
/* text-align: center; */
border: 1px solid black;
width: 500px;
margin: auto;
border-radius: 10px;
padding:10px;
background-color: rgb(223, 217, 206);
}
h2{
text-align: center;
}
input[type="text"]{
width: 80%;
height: 35px;
border-radius: 5px;
border: 1px solid green;
}
input[type="date"]{
width: 55%;
height: 35px;
border-radius: 5px;
border: 1px solid green;
}
input[type="email"]{
width: 80%;
height: 35px;
border-radius: 5px;
border: 1px solid green;
}
input[type="password"]{
width: 80%;
height: 35px;
border-radius: 5px;
border: 1px solid green;
}
input[type="submit"]{
width: 30%;
height: 35px;
border-radius: 5px;
border: 1px solid green;
background-color: rgb(173, 173, 222);
color: white;
font-size: 20px;
}
input[type="submit"]:hover{
background-color:rgb(96, 96, 207);
}