-
Notifications
You must be signed in to change notification settings - Fork 2
/
form.css
65 lines (65 loc) · 1.28 KB
/
form.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
html,body{
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background-color: rgb(171,221,230);;
}
input[type=radio]{
text-align: left;
}
form{
text-align: center;
width: 50%;
margin: auto;
background-color: rgb(255, 245, 238);
border-radius: 0px 15px 0px 15px;
border: 4px solid black;
}
h1{
margin: -1px;
text-align: center;
background-color: blue;
color: white;
border-radius: 0px 15px 0px 0px;
}
input[type=number],input[type=text],input[type=date],input[type=time], .sel{
height: 40px;
width: 50%;
padding: 5px;
display: inline-block;
margin: 3px 0 3px 0;
border-radius: 5px 5px 5px 5px;
border: 1px solid black;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
h1{
font-size: 35px;
padding: 5px;
}
h3{
font-weight: 500;
font-size: 25px;
}
.idcard{
font-size: 18px;
font-weight: 400;
}
.gend{
font-size: 18px;
}
.regbut, #c100{
background-color: blue;
color: white;
height: 45px;
width: 125px;
padding: 16px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
opacity: 0.6;
}
.regbut:hover, #c100:hover {
opacity:1;
}