aboutsummaryrefslogtreecommitdiffstats
path: root/app/assets/stylesheets/main/routes.css.scss
blob: 25adce1490e97c3fd62a71784049345bb06a3b69 (plain)
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
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
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
// Place all the styles related to the routes controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/

#workspace.lines.show
{

    .routes{
        margin-top: 20px;
    }
    
}

#workspace.routes.edit, #workspace.routes.new, #workspace.routes.create, #workspace.routes.update
{
    #route_color{ width: 100px;
                 color: white;
                 font-weight: bold;}
    
     #stop_points .nested-fields {
        ol {
            margin-left: 25%;
            i.fa { margin-right: 10px;}   

            li {
                display: inline;

                .token-input-list {
                    overflow: visible;
                    .token-input-token {                        
                        p { margin: 0px 0px !important; }                        
                    }
                }
            }
        }                       
     }

     #stop_points .links {
         margin: 10px 0 15px 25%;
     }       
}

#workspace.routes.show
{
    .page_info {
        margin: 10px 0 10px 0;
    }
    
    .route_color{ color: white;
                  font-weight: bold;
                  padding: 0 5px 0 5px;}

    .summary p label {
        font-weight: bold;
    }

    .stop_points_detail div.page_info {
        margin-top: 0px;
    }   

    .stop_points {
        margin-top: 10px;
    }
    
    .route_journey_patterns {
      a {
        cursor: pointer;
      }
    }
    
    .route_stop_points {
        clear: both;
        margin: 0px;
        padding: 0px;
        a {
          cursor: pointer;
        }
    }

    .stop_point {
        /* to create multi-column index */
        width: 250px;
        float: left;
        padding-right: 10px;

        .position {
            width: 25px;
            height: 20px;
            float: left;
            background-color: #61970B;
            font-weight: bold;
            color: white;
            margin-right: 10px;
            padding-left: 4px;
        }
    }
    
    .journey_patterns {
        margin-top: 10px;
    }
    
    .journey_pattern {
        /* to create multi-column index */
        width: 350px;
        padding-right: 10px;
        height: 80px;
        float: left;

        .name {
            line-height: 16px;
        }
        
    }
}