loading.css 1.21 KB
Newer Older
Patrick's avatar
Patrick committed
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
.loader {
    border: 2px solid #f3f3f3;
    border-radius: 50%;
    border-top: 2px solid #3498db;
    width: 12px;
    height: 12px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
  }
  /* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .Travelpoint{
    font-size: 12pt;
    margin: 5px;
    font-weight: bold; 
  }
  .walkingshape {
    height: 50px;
    border-left-style: solid;
    border-color:#1e90ff;
    border-left-width: 10px;
    width: 60px;
    margin-left:30px;
    padding-left:5px;
    /* text-align: center; */
    /* background-color: #1e90ff; */
  }
  .busshape {
    height: 50px;
    width: 60px;
    margin-left:30px;
    /* text-align: center; */
    border-color: #ff8c00;
    border-left-style: solid;
    border-left-width: 10px;
    padding-left:5px;
  }
  .subwayshape {
    height: 50px;
    width: 60px;
    margin-left:30px;
    /* text-align: center; */
    border-color: #ff8c00;
    border-left-style: solid;
    border-left-width: 10px;
    padding-left:5px;
  }