main
Last change
on this file since 4d97b63 was 08f82ec, checked in by 223021 <daniel.ilievski.2@…>, 5 months ago |
Did more refactoring
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Line | |
---|
1 | .blue-submit-button {
|
---|
2 | font-size: 1rem;
|
---|
3 | padding: 5px 17px;
|
---|
4 | border-radius: 8px;
|
---|
5 | background-color: #06367a;
|
---|
6 | border: none;
|
---|
7 | color: white;
|
---|
8 | font-weight: 500;
|
---|
9 | transition: background-color 0.3s ease;
|
---|
10 | }
|
---|
11 |
|
---|
12 | .blue-submit-button:hover {
|
---|
13 | background-color: #2e579b;
|
---|
14 | }
|
---|
15 |
|
---|
16 | /*FILTER CONTAINER*/
|
---|
17 |
|
---|
18 | .filter-container {
|
---|
19 | height: 10%;
|
---|
20 | width: 100%;
|
---|
21 | background-color: #fff;
|
---|
22 | border-radius: 12px;
|
---|
23 | padding: 15px 20px;
|
---|
24 | margin-bottom: 20px;
|
---|
25 | margin-top: 30px;
|
---|
26 | height: auto;
|
---|
27 | }
|
---|
28 |
|
---|
29 | .filter-container .filter-box {
|
---|
30 | display: inline-flex;
|
---|
31 | justify-content: center;
|
---|
32 | gap: 10px;
|
---|
33 | }
|
---|
34 |
|
---|
35 |
|
---|
36 | .filter-container .search-container {
|
---|
37 | position: relative;
|
---|
38 | /*float: left;*/
|
---|
39 | display: inline-block;
|
---|
40 | }
|
---|
41 | .filter-container .search-container .search-input {
|
---|
42 | width: 400px;
|
---|
43 | display: inline;
|
---|
44 | padding: 5px 30px;
|
---|
45 | border-radius: 10px;
|
---|
46 | border: 1px solid lightgrey;
|
---|
47 | /*margin-right: 15px;*/
|
---|
48 | }
|
---|
49 |
|
---|
50 | .filter-container .search-container .search-input:focus {
|
---|
51 | outline-color: #2684ff;
|
---|
52 | }
|
---|
53 |
|
---|
54 | .filter-container .search-container i {
|
---|
55 | left: 10px;
|
---|
56 | position: absolute;
|
---|
57 | top: 10px;
|
---|
58 | }
|
---|
59 |
|
---|
60 | .filter-container .item {
|
---|
61 | width: 20%;
|
---|
62 | display: inline-block;
|
---|
63 | /*margin-left: 10px;*/
|
---|
64 | /*float: left !important;*/
|
---|
65 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.