www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

tk.css (1203B)


      1 #test-table-layout {
      2     left: 100px;
      3 }
      4 
      5 #test-ui-layout {
      6     left: 400px;
      7 }
      8 
      9 #test-js-layout {
     10     left: 700px;
     11 }
     12 
     13 #test-tk-widget {
     14     left: 1000px;
     15 }
     16 
     17 #test-table-layout .tk.contenu .tk.box {
     18     height: 100%;
     19 }
     20 
     21 
     22 /* Positions */
     23 
     24 .tk.window {
     25     position: absolute ! important;
     26     width: 200px;
     27     height: 300px;
     28     top:100px;
     29 }
     30 
     31 .tk.titre {
     32     text-align: center;
     33 }
     34 
     35 .tk.contenu {
     36     height: 100%;
     37     text-align: center;
     38 }
     39 
     40 .tk.pied {
     41     text-align: center;
     42 }
     43 
     44 .tk.box-table {
     45     height: 100%;
     46     width: 100%;
     47     border-collapse: collapse;
     48 }
     49 
     50 .tk.box-td {
     51     padding: 0;
     52 }
     53 
     54 /* hcontainer */
     55 .tk.hcontainer-table {
     56     width: 100%;
     57     border-collapse: collapse;
     58 }
     59 
     60 .tk.hcontainer-td {
     61     padding: 0;
     62     width: 1px;
     63 }
     64 
     65 .tk.hcontainer-td.auto-width {
     66     width: auto;
     67 }
     68 
     69 /* vcontainer */
     70 .tk.vcontainer-table {
     71     height: 100%;
     72     border-collapse: collapse;
     73 }
     74 
     75 .tk.vcontainer-td {
     76     padding: 0;
     77 }
     78 
     79 .tk.vcontainer-tr {
     80     height: 0px;
     81 }
     82 
     83 .tk.vcontainer-tr.auto-height {
     84     height: auto;
     85 }
     86 
     87 /* bouton */
     88 .tk.bouton {
     89     text-align: center;
     90     border: thin solid gray;
     91     font-weight: bold;
     92 }
     93 
     94 .tk.bouton:hover {
     95     color: blue;
     96     border-color: black;
     97     cursor: default;
     98 }