1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
| * { margin: 0; padding: 0; box-sizing: border-box; } [data-theme="light"]
div.menus_item > a:first-child { position: relative; display: inline-block; color: #fff; transition: background-color 0.2s !important; cursor: pointer; text-transform: uppercase; } div.menus_item > a:first-child:hover { cursor: pointer; color: #fff !important; background-color: #5da32e !important; background-size: 400%; box-shadow: 0 0 15px rgb(2, 4, 24); z-index: 1; } div.menus_item > a:first-child::before { color: #fff !important; cursor: pointer; content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: inherit; filter: blur(6px); z-index: -1; opacity: 1; border-radius: 15px 15px 15px 15px; }
[data-theme="dark"] div.menus_item > a:first-child { position: relative; display: inline-block; color: #eee; transition: background-color 0.2s !important; cursor: pointer; text-transform: uppercase; } div.menus_item > a:first-child:hover { color: #eee !important; cursor: pointer; background-color: #f2b94b; background-size: 400%; box-shadow: 0 0 15px rgb(2, 4, 24); z-index: 1; } div.menus_item > a:first-child::before { color: #eee !important; cursor: pointer; content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: inherit; filter: blur(6px); z-index: -1; opacity: 1; border-radius: 15px 15px 15px 15px; }
#page-header #site-subtitle { color: rgba(255, 255, 255, 1) !important; }
|