|
| 1 | +/* Dedicated to God the Father */ |
| 2 | + |
| 3 | +/* All Rights Reserved Christopher Andrew Topalian Copyright 2000-2024 */ |
| 4 | + |
| 5 | +/* https://github.com/ChristopherTopalian */ |
| 6 | + |
| 7 | +/* https://github.com/ChristopherAndrewTopalian */ |
| 8 | + |
| 9 | +/* style001.css */ |
| 10 | + |
| 11 | +body |
| 12 | +{ |
| 13 | + background-color: rgb(40, 40, 40); |
| 14 | + font-family: Arial; |
| 15 | + font-size: 20px; |
| 16 | + color: rgb(255, 255, 255); |
| 17 | +} |
| 18 | + |
| 19 | +hr |
| 20 | +{ |
| 21 | + margin: 5px; |
| 22 | +} |
| 23 | + |
| 24 | +a |
| 25 | +{ |
| 26 | + text-decoration: none; |
| 27 | + font-weight: bold; |
| 28 | + color: rgb(70, 70, 70); |
| 29 | +} |
| 30 | + |
| 31 | +.mainDiv |
| 32 | +{ |
| 33 | + position: fixed; |
| 34 | + left: 10px; |
| 35 | + top: 5px; |
| 36 | + margin: 5px; |
| 37 | + border: solid 1px; |
| 38 | + border-radius: 8px; |
| 39 | + padding: 4px; |
| 40 | + text-align: right; |
| 41 | + transition: opacity 4.0s ease-in-out; |
| 42 | +} |
| 43 | + |
| 44 | +.counterLabel |
| 45 | +{ |
| 46 | + padding-right: 6.5px; |
| 47 | +} |
| 48 | + |
| 49 | +.counterTextbox |
| 50 | +{ |
| 51 | + background-color: rgb(0, 0, 0); |
| 52 | + border: solid 1px rgb(255, 255, 255); |
| 53 | + border-radius: 8px; |
| 54 | + padding-left: 10px; |
| 55 | + padding-right: 10px; |
| 56 | + padding-top: 2px; |
| 57 | + padding-bottom: 2px; |
| 58 | + font-size: 20px; |
| 59 | + color: rgb(255, 255, 255); |
| 60 | + text-align: right; |
| 61 | +} |
| 62 | + |
| 63 | +.fpsLabel |
| 64 | +{ |
| 65 | + padding-right: 5px; |
| 66 | +} |
| 67 | + |
| 68 | +.fpsTextbox |
| 69 | +{ |
| 70 | + width: 60px; |
| 71 | + background-color: rgb(0, 0, 0); |
| 72 | + border: solid 1px rgb(255, 255, 255); |
| 73 | + border-radius: 8px; |
| 74 | + padding-left: 10px; |
| 75 | + padding-right: 10px; |
| 76 | + padding-top: 2px; |
| 77 | + padding-bottom: 2px; |
| 78 | + font-size: 20px; |
| 79 | + color: rgb(255, 255, 255); |
| 80 | + text-align: center; |
| 81 | +} |
| 82 | + |
| 83 | +input[type = "range"] |
| 84 | +{ |
| 85 | + -webkit-appearance: none; |
| 86 | + appearance: none; |
| 87 | + width: 100%; |
| 88 | + height: 10px; |
| 89 | + background: linear-gradient(to right, rgb(10, 25, 47), rgb(0, 180, 255)); |
| 90 | + border-radius: 5px; |
| 91 | + outline: none; |
| 92 | + opacity: 0.7; |
| 93 | + -webkit-transition: .2s; |
| 94 | + transition: opacity .2s; |
| 95 | +} |
| 96 | + |
| 97 | +input[type = "range"]:hover |
| 98 | +{ |
| 99 | + opacity: 1; |
| 100 | +} |
| 101 | + |
| 102 | +/* chrome and chromium */ |
| 103 | +input[type = "range"]::-webkit-slider-thumb |
| 104 | +{ |
| 105 | + -webkit-appearance: none; |
| 106 | + appearance: none; |
| 107 | + width: 20px; |
| 108 | + height: 20px; |
| 109 | + background:rgb(0, 180, 255); |
| 110 | + border: solid 2px rgb(20, 20, 20); |
| 111 | + border-radius: 50%; |
| 112 | + cursor: pointer; |
| 113 | +} |
| 114 | + |
| 115 | +/* mozilla */ |
| 116 | +input[type = "range"]::-moz-range-thumb |
| 117 | +{ |
| 118 | + width: 16px; |
| 119 | + height: 16px; |
| 120 | + background: rgb(255, 255, 255); |
| 121 | + border-width: 0px; |
| 122 | + border-radius: 50%; |
| 123 | + cursor: pointer; |
| 124 | +} |
| 125 | + |
0 commit comments