forked from tushargupta1504/Medical-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style3.css
105 lines (105 loc) · 1.97 KB
/
style3.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
102
103
104
105
body{
display: flex;
height: 100vh;
justify-content: center;
align-items: center;
background-image: url("img/Background.jpg");
}
.main{
width: 100%;
max-width: 700px;
background: rgba(0,0,0,0.5);
padding: 28px;
margin: 0 28px;
border-radius: 10px;
}
.form-title{
font-size: 60px;
text-align: center;
padding-bottom: 5px;
font-style: italic;
}
.main-user-info{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
padding: 20px 0;
}
.user-input-box{
justify-content: end;
display: flex;
flex-wrap: wrap;
width: 50%;
padding-bottom: 15px;
}
.user-input-box label{
width: 95%;
font-size: 20px;
margin: 5px 0;
}
.user-input-box input{
height: 35px;
width: 95%;
border-radius: 7px;
outline: none;
border: 1px solid grey;
}
.gender-details{
width: 100%;
padding: 10px;
}
.gender-title{
font-size: 23px;
}
.gender-category{
margin: 15px 0;
}
.gender-category label{
padding: 0 20px 0 5px;
}
.gender-category label,
.gender-category input,
.form-submit-button input{
cursor: pointer;
}
.form-submit-button{
width: 100%;
}
.form-submit-button input{
width: 100%;
margin-top: 10px;
font-size: 20px;
padding: 10px;
border: none;
border-radius: 3px;
background: rgba(56,204,93,0.7)
}
.form-submit-button input:hover{
color: rgb(255,255,255);
}
.register{
font-size: 25px;
text-align: center;
padding-top: 20px;
}
@media(max-width: 600px){
.main{
min-width: 200px;
}
.user-input-box{
margin-bottom: 12px;
width: 100%;
}
.gender-category{
display: flex;
justify-content: space-between;
width: 100%;
}
.main-user-info{
max-height: 300px;
overflow: auto;
}
.main-user-info::-webkit-scrollbar{
width: 0;
}
}