home.page.scss 1.25 KB
Newer Older
Rron Jahja's avatar
Rron Jahja committed
1
2
3
4
.welcome-card img {
  max-height: 35vh;
  overflow: hidden;
}
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

ion-footer{
  overflow-y: auto;
  padding-top: 30px;
}

.bike-list-container{
  position: relative;

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

.bike-container{
  height: 60px;
  width: 100%;
  border: 1px solid #aaaaaa;
  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;
  }
}
87
88
89
90
91
92
93
94
95
96
97
98

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

.mapContainer{
  background-color: white;
}
99
100
101
102
.get-position{
  margin-bottom:10px;
  
}