Changeset 1326 for js/standard_expdef_demo/static/styles.css
- Timestamp:
- 08/25/24 01:56:48 (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
js/standard_expdef_demo/static/styles.css
r880 r1326 1 .geno type{1 .geno { 2 2 font-size: 40px; 3 3 font-weight: 500; 4 4 font-family: "Helvetica", "Arial", "Verdana", serif; 5 5 text-align: center; 6 /* white outline to help when displayed on darker background: */ 7 /* text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white */ 6 8 } 7 9 … … 20 22 width: 8em; 21 23 } 24 25 .neuro-viewer-container{ 26 background-color: black; 27 border-radius: 0px 30px 0px 0px; 28 border-color: white; 29 border-style: double double none none; 30 border-width: 5px; 31 pointer-events: none; 32 } 33 34 #neuro-viewer-2d{ 35 position: absolute; 36 bottom: 0; 37 left: 0; 38 width: 25%; 39 height: 25%; 40 } 41 42 #neuro-viewer-3d{ 43 background-color: black; 44 border-radius: 30px 30px 30px 30px; 45 border-color: white; 46 border-style: double double double double; 47 border-width: 5px; 48 pointer-events: none; 49 } 50 51 #neuro-viewer-canvas{ 52 width: 100%; 53 height: 100%; 54 } 55 56 .controls { 57 position: absolute; 58 bottom: 0; 59 right: 0; 60 background-color: gainsboro; 61 border-radius: 30px 0px 0px 0px; 62 border-color: gray; 63 border-style: double none none double; 64 border-width: 5px; 65 font-family: "Sans-serif", Verdana, Geneva, Tahoma, sans-serif; 66 67 display: flex; 68 justify-content: center; 69 align-items: safe center; 70 } 71 72 .column { 73 display: flex; 74 flex-direction: column; 75 } 76 77 .row { 78 display: flex; 79 flex-direction: row; 80 } 81 82 .slider-value{ 83 margin-left: 5%; 84 } 85 86 .slider{ 87 margin-left: 2%; 88 margin-right: 2%; 89 } 90 91 .control-container{ 92 margin-top: 2%; 93 width: 70%; 94 } 95 96 .rater-button{ 97 padding: 0; 98 border: none; 99 background: none; 100 font-size: 30px; 101 margin-left: 2%; 102 } 103 104 button.inactive{ 105 opacity: 0.33; 106 } 107 108 button:active{ 109 transform: translateY(4px); 110 } 111 112 button.inactive:active{ 113 transform: translateY(0px); 114 }
Note: See TracChangeset
for help on using the changeset viewer.