Changeset 569 in tmcsimulator for trunk/webapps/GTEC/css/styles.css


Ignore:
Timestamp:
01/24/2020 01:12:52 PM (6 years ago)
Author:
jdalbey
Message:

GTEC remove search box.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/webapps/GTEC/css/styles.css

    r556 r569  
    1414        padding: 0; 
    1515      } 
     16      button { 
     17          display: inline-block; 
     18          border: 2px solid black; 
     19          border-radius: 8px; 
     20          padding: 1rem 2rem; 
     21          margin: 0; 
     22          text-decoration: none; 
     23          background: gray;  
     24          color: #ffffff; 
     25          font-family: sans-serif; 
     26          font-size: 1rem; 
     27          cursor: pointer; 
     28          text-align: center; 
     29          transition: background 250ms ease-in-out,  
     30                      transform 150ms ease; 
     31          -webkit-appearance: none; 
     32          -moz-appearance: none; 
     33      } 
     34 
     35      button:hover, 
     36      button:focus { 
     37          background: #0053ba; 
     38      } 
     39 
     40      button:focus { 
     41          outline: 1px solid #fff; 
     42          outline-offset: -4px; 
     43      } 
     44 
     45      button:active { 
     46          transform: scale(0.99); 
     47      } 
     48 
    1649        .test { 
    1750          width:200px; 
     
    2154          margin:0px auto; 
    2255          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; 
    5856        } 
    5957      #time { 
     
    6664      } 
    6765     
    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       } 
    8366      #ctrButton { 
    8467        cursor: pointer; 
     
    8770        border: thick solid white; 
    8871      } 
    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         } 
    14072      .unstyled-button { 
    14173        border: 0 none; 
     
    14375        background: none; 
    14476        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  
     77      } 
Note: See TracChangeset for help on using the changeset viewer.