source: tmcsimulator/trunk/webapps/visualizer/css/styles.css @ 516

Revision 516, 4.0 KB checked in by jdalbey, 6 years ago (diff)

Add new web app: Traffic Events Visualizer

Line 
1        @font-face {
2          font-family: Scoreboard;
3          src: url('../js/scoreboard.ttf');
4        }
5      /* Set the size of the div element that contains the map */
6      #mapdiv {
7        height: 100%;
8        width: 100%; 
9       }
10        /* Makes the page fill the window. */
11      html, body {
12        height: 100%;
13        margin: 0;
14        padding: 0;
15      }
16        .test {
17          width:200px;
18          display:inline-block;
19          overflow: auto;
20          white-space: nowrap;
21          margin:0px auto;
22          border:1px red solid;
23        }
24        /* A line of the CMS message display */
25        .cms_sign {
26           height: 37px;
27           width: 272px;
28           resize: none;
29           font-family: Scoreboard;
30           font-size: xx-large;
31           background-color: #2F4F4F;
32           color: yellow;
33        }
34        /* Field for entering CMS Message line */
35       .cms-input {
36           border: thin solid #333;
37           padding: 2px;
38           font-family: "Lucida Console", Monaco, monospace;
39           font-size: medium;
40           width: 163px;
41        }
42        /* Field for entering HAR Message line */
43       .har-input {
44           border: thin solid #333;
45           padding: 2px;
46           font-size: medium;
47        }
48        #har-msg-display {
49          margin-right: 50%; /*  100px; */
50          margin-left: 25%;  /*  100px; */
51        }
52        #har-msgcontent1 {
53          margin-bottom: 10px;
54        }
55        #har-msg {
56          margin-top: 300px;
57          margin-bottom: 300px;
58        }
59      #time {
60        background: #E6E6FA;
61        font-family: Roboto;
62        font-size: 16px;
63        font-weight: 400;
64        margin-right: 40px;
65        margin-bottom: 0px;
66      }
67   
68      #search-input {
69        background-color: #17263c;  /* #CD853F;  /*#E6E6FA; /* lavender */
70        color: #E6E6FA;  /* #FFEFD5; */
71        font-family: Roboto;
72        font-size: 18px;
73        font-weight: 400;
74        margin-left: 12px;
75        padding: 0 11px 0 13px;
76        text-overflow: ellipsis;
77        border-color: #746855;   /* #4d90fe; */
78        width: 400px;
79      }
80      #search-input:focus {
81        border-color: #E6E6FA; 
82      }
83      #ctrButton {
84        cursor: pointer;
85        background-color: #fff;
86        margin-right: 7px;
87        border: thick solid white;
88      }
89      #cms-info-label {
90           height: 20px;
91           width: 590px;
92           overflow: hidden;
93           background-color: #A8C5FF;  /*#ECECFB; */
94           border: thin solid #BDBDBD;
95           padding: 5px;
96       }
97      #cms-message-display {
98           height: 390px;
99           width: 300px;
100           overflow: hidden;
101           float: left;
102       }
103      #har-message-display {
104        margin-top: 50px;
105        margin-bottom: 50px;
106      }
107      #har-msgdisplay1 {
108            background-color: darkgray;
109      }
110      #message-input {
111           height: 122px;
112           width: 170px;
113           background-color: #729FFF;
114           float: left;
115       }
116        /* CMS Dialog button panel */
117       #buttonPanel {
118           height: 122px;
119           width: 125px;
120           background-color: #729FFF;
121           float: left;
122           padding: 20px;
123        }
124       .wrapper {
125           position: relative;\
126        }
127        /* CMS Edit Message Dialog */
128       .dialog {
129          position: absolute;
130          top: 10%;
131          left: 25%;
132          background-color: #729FFF; /* #ECECFB; */
133          margin: auto;
134          padding: 20px;
135          border: 1px solid #888;
136          width: 680px;
137          height: 390px;
138          display: none;           
139        }
140      .unstyled-button {
141        border: 0 none;
142        padding: 0;
143        background: none;
144        cursor: pointer;
145      }   
146        /* The Close Button in the CMS Dialog */
147        .close {
148          color: #2E2E2E;
149          float: right;
150          font-size: 30px;
151          font-weight: bold;
152        }
153        .close:hover,
154        .close:focus {
155          color: black;
156          text-decoration: none;
157          cursor: pointer;
158        }
159
Note: See TracBrowser for help on using the repository browser.