-
Notifications
You must be signed in to change notification settings - Fork 3
/
Details.css
154 lines (147 loc) · 4.42 KB
/
Details.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
body{
background: rgb(48,226,255);
background: linear-gradient(180deg, rgba(48,226,255,1) 0%, rgba(82,252,233,1) 50%, rgba(55,219,246,1) 100%);
background: linear-gradient(180deg, rgb(18, 19, 19) 0%, rgb(78, 82, 81) 50%, rgb(3, 3, 3) 100%);
}
*{
transition: all 1s ease-in-out;
}
body{
/* background-color:#61122f; */
color:#fff;
font-size: 16px;
font-family: 'Oxygen', sans-serif;
}
.main-container{
background-color:white;
margin-left:4%;
margin-right:4%;
border:1px solid lightgray;
margin-bottom: 50px;
/* border:2px solid black; */
outline:2px solid rgb(255, 255, 255);
outline-offset: 5px;
margin-top:50px;
}
.main-container .container-fluid .row label{
padding:0;
text-align: right;
margin-right:20px;
height: 26px;
margin-top: 10px;
font-size:15px;
}
.main-container .container-fluid .row input,select{
height:40px;
}
.main-container .container-fluid .row p{
font-size:25px;
color:darkgrey;
font-weight:100;
}
.main-container .container-fluid form.row .row .margin{
height:70px;
}
#gender{
margin-left:10px;
}
#button{
padding:10px;
background-color:rgb(40, 131, 40);
color:white;
width:100px;
float:right;
font-size:16px;
margin-bottom:20px;
border-radius:5px;
font-weight:600;
letter-spacing: 1px;
margin-top:10px;
}
/* ---------- For large devices ----------- */
@media (min-width: 992px){
.main-container{
margin-left: 8%;
margin-right: 8%;
}
}
/* --------------------Medium Devices---------------------- */
@media (min-width: 768px) and (max-width: 991px){
}
/* -------------------Small devices--------------------- */
@media (min-width: 576px) and (max-width: 767px){
.main-container .container-fluid .row label{
text-align: left;
margin-bottom:10px;
}
.main-container .container-fluid form.row .row{
margin-left: auto;
margin-right: auto;
padding: 0;
}
.main-container{
padding:0 !important;
}
.main-container .container-fluid form.row{
margin-left: auto;
margin-right: auto;
}
.main-container .container-fluid form.row .row .margin{
margin-bottom:25px;
}
}
/* ---------------------Extra small Devices--------------------- */
@media (min-width:0px) and (max-width: 575px){
.main-container .container-fluid .row label{
text-align: left;
margin-bottom:10px;
}
.main-container .container-fluid form.row .row{
margin-left: auto;
margin-right: auto;
padding: 0;
}
.main-container{
padding:0 !important;
}
.main-container .container-fluid form.row{
margin-left: auto;
margin-right: auto;
}
.main-container .container-fluid form.row .row .margin{
margin-bottom:25px;
}
#interest{
margin-top:10px;
}
}
/* <div class="container-fluid">
<h1>Profile</h1>
<hr>
<form class="row col-xs-6">
<label for="status" class="col-xs-10">Status</label>
<input type="text" class="col-xs-10">
<label for="fullname" class="col-xs-10">Full Name</label>
<input type="text" class="col-xs-5">
<input type="text" class="col-xs-5">
<label for="fname" class="col-xs-5">First Name</label>
<label for="lname" class="col-xs-5">Last Name</label>
<label for="address" class="col-xs-10">Address</label>
<input type="text" class="col-xs-10">
<label for="add1" class="col-xs-10">Street Address</label>
<input type="text" class="col-xs-5">
<input type="text" class="col-xs-5">
<label for="city" class="col-xs-5">City</label>
<label for="state" class="col-xs-5">State/Province</label>
<input type="text" class="col-xs-5">
<select placeholder="Please Select" class="col-xs-5">
<option>America</option>
<option>Australia</option>
<option>Europe</option>
<option>India</option>
<option>Japan</option>
</select>
<label for="state" class="col-xs-5">Postal/ZipCode</label>
<label for="country" class="col-xs-5">Country</label>
</form>
</div> */