home.page.scss 2.39 KB
Newer Older
Rron Jahja's avatar
Rron Jahja committed
1
2
3
4
.welcome-card img {
  max-height: 35vh;
  overflow: hidden;
}
5
6

ion-footer{
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
  max-height: 50%;
  .bike-list-container{
    overflow-y: auto;
  }
  
  .nearby-bikes{
    padding: 8px;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
    background-color: #34a080;
    text-align: center;
    color: #fff;
  }

  .bike-list-container{
    padding: 8px;

    .bike-container{
      margin-bottom: 10px;
      box-shadow: 0px 0px 3px 0px rgba(15, 22, 33, 0.3);
      background-color: #f5f5f5;

      .inner {
        width: inherit;
        position: relative;

        .distance-data{
34
          padding-right: 80px;
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
          padding-left: 60px;
          font-size: 14px;

          ion-icon{
            font-size: 18px;
          }
        }

        .bike-icon{
          position: absolute;
          top: 0;
          left: 0;
          bottom: 0;
          width: 60px;
          line-height: 78px;
          font-size: 48px;
          text-align: center;
        }

        .battery-info1{
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          line-height: 70px;
          text-align: center;
61
          width: 80px;
62
63
64
65
66
          font-size: 20px;
        }
      }
    }
  }
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
}

.bike-list-container{
  position: relative;

  .bike-list-expander{
    position: absolute;
    font-size: 32px;
    color: gray;
    z-index: 200;
    left: 46%;
    top: -32px;
  }
}

.bike-container{
83
  height: 70px;
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
  width: 100%;
  border-radius: 5px;
  box-sizing: border-box;
  float: left;
    width: 100%;
    clear: both;

  div {
    height: inherit;
    float: left;
  }
}

.bike-name, .battery-info{
  height: inherit;
  line-height: 45px;
}

.battery-info{
  width: 20%;
}

.bike-name{
  width: 30%!important;
  line-height: 60px;
  padding-left: 10px;
}

.battery-info{
  line-height: 60px;

  div{
    float: left;
  }
}
.battery-icon{
  font-size: 20px;
}

.address-info{
  float: right!important;
  width: 50%!important;
  font-size: 14px;
  text-align: right;
  padding-right: 10px;

  div{
    width: 100%;
  }

  .disance{
    height: 20px;
    line-height: 20px;
  }

  .address{
    height: 40px;
    padding-top: 10px;
  }
}
144
145
146
147
148
149
150
151
152
153
154
155

.checkbox-wrapper{
  text-align: right;
  float: right;
  ion-label{
    margin-left: 5px;
  }
}

.mapContainer{
  background-color: white;
}
156
157
158
.get-position{
  margin-bottom:10px;
  
159
160
161
162
}

.button-container{
  clear: both;
163
164
165
}
.close-circle-cancel{
  margin-left: 93%;
166
}