-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathform.css
53 lines (44 loc) · 920 Bytes
/
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
.settings {
padding: 30px;
display: flex;
flex-direction: column;
align-items: center;
}
.user-settings {
display: flex;
flex-direction: column;
align-items: left;
margin: 30px;
border: solid 2px #997B66;
border-radius: 8px;
padding: 20px;
width: 500px;
}
.btn.btn-outline-danger.btn-sm {
width: 120px;
align-self: center;
}
h4 {
border: solid 1px #997B66;
border-radius: 8px;
padding: 5px;
background-color: #997B66;
color: #FFDAB9;
margin-bottom: 20px;
}
input[type=text] {
background-color: white;
}
.form-group.row {
padding-left: 15px;
}
@media screen and (max-width: 540px) {
.user-settings {
width: 400px;
}
.form-group {
width: 350px;
}
/* currently the select2 fields are too big and idk how to size them properly
since its a plug in... will continue to investigate */
}