|
| 1 | +@media (prefers-color-scheme: light) { |
| 2 | + :root { |
| 3 | + --header-color: linear-gradient(to bottom,#388ed6,#2075b1); |
| 4 | + --bg-color: #fafafa; |
| 5 | + --text-color: #0F0F0F; |
| 6 | + --container-color: #fafafa; |
| 7 | + --boxShadow-color: #0000004d; |
| 8 | + --border-color: #1d3041; |
| 9 | + --navbar-color: #24425c; |
| 10 | + --item-color: #ebeef1; |
| 11 | + --item-border: #c9d0d6; |
| 12 | + --item-hover: linear-gradient(to bottom, #fafafa, #e8ebef); |
| 13 | + --item-inner-boxShadow-color: #0000000d; |
| 14 | + --item-boxShadow-color: #96969626; |
| 15 | + } |
| 16 | +} |
| 17 | + |
| 18 | +body { |
| 19 | + margin: 0px; |
| 20 | + background: var(--bg-color, #F8F4F1); |
| 21 | + font-family: Roboto Flex Variable, Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; |
| 22 | +} |
| 23 | + |
| 24 | +/* Text Container */ |
| 25 | +.text-container { |
| 26 | + /* Layout */ |
| 27 | + margin: 3% auto; |
| 28 | + max-width: 75%; |
| 29 | + padding: 10px 15px 10px 15px; |
| 30 | + |
| 31 | + /* Styling */ |
| 32 | + border-radius: 5px; |
| 33 | + background: var(--container-color, #F8F4F1); |
| 34 | + box-shadow: 0 1px 3px 1px var(--boxShadow-color, #0000004d); |
| 35 | +} |
| 36 | +.text-container > p { |
| 37 | + color: var(--text-color, #0F0F0F); |
| 38 | + text-align: center; |
| 39 | + font-size: 20px; |
| 40 | + font-weight: 400; |
| 41 | +} |
| 42 | + |
| 43 | +/* Header */ |
| 44 | +.head-container { |
| 45 | + width: 100%; |
| 46 | + height: 50px; |
| 47 | + box-shadow: 0 1px 3px 1px var(--boxShadow-color, #0000004d); |
| 48 | + position: relative; |
| 49 | + border-bottom: 1px solid var(--border-color, #1d3041); |
| 50 | + background: var(--header-color, linear-gradient(to bottom,#388ed6,#2075b1)); |
| 51 | + |
| 52 | +} |
| 53 | +.head-container > img { |
| 54 | + /*Image Style*/ |
| 55 | + width: 100px; |
| 56 | + height: 20px; |
| 57 | + padding: 14px 20px 13px; |
| 58 | +} |
| 59 | +.navbar-container { |
| 60 | + width: 100%; |
| 61 | + min-height: 80px; |
| 62 | + background: var(--navbar-color, #24425c); |
| 63 | +} |
| 64 | + |
| 65 | +/* Version-List */ |
| 66 | +ul { |
| 67 | + list-style-type: none; |
| 68 | + display: flex; |
| 69 | + justify-content: center; |
| 70 | + align-items: center; |
| 71 | + flex-wrap: wrap; |
| 72 | + column-gap: 20px; |
| 73 | + row-gap: 10px; |
| 74 | +} |
| 75 | + |
| 76 | +li { |
| 77 | + width: 160px; |
| 78 | + text-align: center; |
| 79 | + padding: 15px 10px; |
| 80 | + border-radius: 4px; |
| 81 | + border: 1px solid var(--item-border, #c9d0d6); |
| 82 | + background: var(--item-color, #ebeef1); |
| 83 | + box-shadow: inset 0 3px 10px 2px var(--item-inner-boxShadow-color, #0000000d), 0px 5px 10px 0px var(--item-boxShadow-color, #96969626); |
| 84 | +} |
| 85 | + |
| 86 | +li:hover { |
| 87 | + background: var(--item-hover, linear-gradient(to bottom, #fafafa, #e8ebef)); |
| 88 | +} |
| 89 | + |
| 90 | +li > a { |
| 91 | + color: var(--text-color, #0F0F0F); |
| 92 | + font-size: 18px; |
| 93 | + font-weight: 400; |
| 94 | + text-decoration: none; |
| 95 | + padding:15px 50px; |
| 96 | +} |
0 commit comments