File modules/cms/ui/themes/default/style/openrat-ui.css

Last commit: Fri Dec 6 23:29:56 2024 +0100	Jan Dankert	UI: Cleaner profile dialog in navigation menu.
1 /* Usage to this variable is safe to be removed */ 2 html, 3 body { 4 width: 100%; 5 height: 100%; 6 } 7 @media only screen and (min-width: 56rem) { 8 body:before { 9 content: ""; 10 position: fixed; 11 left: 0; 12 right: 0; 13 z-index: -1; 14 width: 100%; 15 height: 100%; 16 display: block; 17 background-size: cover; 18 background-position: center; 19 background-repeat: no-repeat; 20 } 21 } 22 .or-editor-toolbar { 23 font-size: 1.5em; 24 } 25 iframe { 26 width: 100%; 27 height: 500px; 28 display: block; 29 } 30 /* Verweise */ 31 a:link, 32 a:visited { 33 font-weight: normal; 34 text-decoration: none; 35 } 36 a:active, 37 a:hover { 38 font-weight: normal; 39 text-decoration: none; 40 } 41 .or-act-clickable { 42 cursor: pointer; 43 } 44 /* Make Codemirror Auto-Resizable */ 45 .CodeMirror { 46 height: auto; 47 } 48 .or-name { 49 font-size: 1.5em; 50 display: block; 51 text-align: center; 52 } 53 .or-addition { 54 font-size: 1.1em; 55 display: block; 56 text-align: center; 57 opacity: 0.8; 58 } 59 .or-filename, 60 .or-extension { 61 font-family: 'Source Code Pro', Monospace, Monospaced, Courier, monospace; 62 } 63 .or { 64 /* After page loading, all elements are hidden. This class will be removed by javascript. */ 65 } 66 .or-search > .or-input { 67 box-shadow: none !important; 68 background-color: transparent !important; 69 } 70 .or--initial-hidden { 71 opacity: 0; 72 } 73 .or-view-flying-button { 74 display: block; 75 bottom: 1em; 76 right: 1em; 77 position: absolute; 78 } 79 .or-linklist { 80 display: flex; 81 flex-direction: column; 82 padding: 10% 20%; 83 } 84 .or-linklist > .or-linklist-line { 85 border: 1px solid; 86 margin-top: 1em; 87 padding: 1em; 88 border-radius: 0.5em; 89 -moz-border-radius: 0.5em; 90 -webkit-border-radius: 0.5em; 91 -khtml-border-radius: 0.5em; 92 } 93 .or-dirty { 94 font-weight: bold; 95 } 96 .or-draggable { 97 cursor: move; 98 } 99 .or-droppable--active { 100 background-color: #3c8b2e !important; 101 cursor: move; 102 z-index: 3; 103 } 104 .or-droppable--hover { 105 background-color: #08f169 !important; 106 cursor: move; 107 z-index: 3; 108 } 109 .or--invisible { 110 visibility: hidden; 111 } 112 .or--visible { 113 visibility: visible; 114 } 115 .or--off { 116 display: none; 117 } 118 .or-link { 119 color: inherit; 120 } 121 .or-link--is-active { 122 font-weight: bold; 123 } 124 legend { 125 font-size: 1.1em; 126 font-weight: bold; 127 padding: 0 0.5em; 128 } 129
Download modules/cms/ui/themes/default/style/openrat-ui.css
History Fri, 6 Dec 2024 23:29:56 +0100 Jan Dankert UI: Cleaner profile dialog in navigation menu. Sun, 13 Oct 2024 13:17:32 +0200 Jan Dankert New Minifier for CSS and JS: Leave JS Linebreaks as they are (for better debugging); Exploded CSS files (instead of a combined one), LESS is necessary but should be avoided in the future. Fri, 21 Aug 2020 00:22:13 +0200 Jan Dankert Refactoring: Collect all frontend compiler scripts in update.php. Compiling of CSS and JS was extracted to a new TemplateCompiler. JS and CSS is now collected in a new openrat.[min.][js|css]. Sun, 23 Feb 2020 04:01:30 +0100 Jan Dankert Refactoring with Namespaces for the cms modules, part 1: moving.