loading.css 1.93 KB
Newer Older
Patrick's avatar
Patrick committed
1
2
3
4
5
6
7
8
9
.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;
  }
Patrick's avatar
Patrick committed
10
  .loaderN {
Patrick's avatar
Patrick committed
11
    border: 2px solid rgb(60, 60, 60);
Patrick's avatar
Patrick committed
12
13
    border-radius: 50%;
    border-top: 2px solid #3498db;
Patrick's avatar
Patrick committed
14
15
    width: 20px;
    height: 20px;
Patrick's avatar
Patrick committed
16
17
18
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    float:right;
Patrick's avatar
Patrick committed
19
20
    background-color: rgb(60, 60, 60);
    color: rgb(60, 60, 60);
Patrick's avatar
Patrick committed
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  }
  .LoaderNoise {
    border: 8px solid rgb(88, 88, 88);
    border-radius: 50%;
    border-top: 8px solid #3498db;
    width: 48px;
    height: 48px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    background-color: rgb(60, 60, 60);
    color: rgb(60, 60, 60);
    /* text-align:center; */
    /* margin-top: 50%; */
    margin-left: 40%;
  }
Patrick's avatar
Patrick committed
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
  /* 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;
  }