-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
159 lines (137 loc) · 3.14 KB
/
Copy pathstyles.css
File metadata and controls
159 lines (137 loc) · 3.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
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
155
156
157
158
159
body {
font-family: 'Poppins';
}
.custom-bubble {
padding: 4px 16px;
max-width: fit-content;
max-height: fit-content;
background-color: #EAF0F6;
border-radius: 50px;
font-family: 'Poppins';
font-style: normal;
font-weight: 500;
font-size: 14px;
line-height: 24px;
color: #33687B;
}
.input-group-append > button {
margin-left: 20px;
}
.btn-create-new {
background: #33687B;
border-radius: 8px;
padding: 8px 16px;
font-family: 'Poppins';
font-style: normal;
font-size: 16px;
line-height: 24px;
color: #FFFFFF;
}
.btn-create-new:hover {
background: #155c76;
color: #FFFFFF;
}
.btn-invite {
background: #FFFFFF;
border: 1px solid #33687B;
border-radius: 8px;
padding: 8px 16px;
font-family: 'Poppins';
font-style: normal;
font-size: 16px;
line-height: 24px;
color: #33687B;
}
.form-switch {
display: flex;
flex-direction: row-reverse;
align-items: flex-start;
justify-content: space-between !important;
padding-left: 0px;
}
.form-check-label {
margin-right: 50px !important;
}
.form-check-input {
margin-right: 80px;
}
.form-check-input:checked {
background-color: #33687B;
border-color: #33687B;
}
.user-details-label {
font-size: 12px;
line-height: 18px;
letter-spacing: 0.01em;
color: #606060;
}
.user-details-button {
border: 1px solid #33687B;
color: #33687B;
font-size: 16px;
line-height: 24px;
}
#map-canvas-div {
padding-right: 10px;
}
#geo-channel-id {
font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 24px;
color: #000000;
padding-right: 16px;
}
#location-details-div {
padding-left: 10px;
border-radius: 10px;
}
#location-details-text {
resize: none; /* prevents user from changing the textarea size */
margin-top: 20px;
overflow-y: auto;
font-style: italic; /* makes the font italic */
font-family: 'Poppins';
font-size: 16px;
}
#location-header {
font-size: 15px; /* Adjust this value to make the header smaller */
display: inline-block;
position: relative;
}
#location-header-div {
display: flex;
align-items: center;
background: #33687B;
border-radius: 8px;
padding: 8px 16px;
font-family: 'Poppins';
font-style: normal;
font-size: 16px;
line-height: 24px;
color: #FFFFFF;
}
#location-header-image {
width: 40px; /* adjust this to change the width */
height: 40px; /* adjust this to change the height */
margin-right: 10px; /* adjust this to create space between the image and the header */
}
@media only screen and (max-width: 992px) {
#location-details-div {
margin-left: 15px;
margin-right: 15px;
}
}
@media only screen and (max-width: 600px) {
#map-canvas-div {height: 191px;}
.form-check-input {margin-right: 150px;}
}
@media only screen and (min-width: 600px) {
#map-canvas-div {height: 394px;}
.form-check-input {margin-right: 80px;}
}
@media only screen and (min-width: 992px) {
#map-canvas-div {height: 524px;}
.form-check-input {margin-right: 80px;}
}