|
| 1 | +/* Imports */ |
| 2 | +@import url('https://fonts.googleapis.com/css2?family=Darumadrop+One&display=swap'); |
| 3 | +@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap'); |
| 4 | +@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap'); |
| 5 | +@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&display=swap'); |
| 6 | +@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap'); |
| 7 | + |
| 8 | +/* General */ |
| 9 | +body { |
| 10 | + margin: 0px; |
| 11 | + padding: 0px; |
| 12 | + background-color: black; |
| 13 | + color: white; |
| 14 | + font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; |
| 15 | +} |
| 16 | +button { |
| 17 | + padding: 10px; |
| 18 | + border-radius: 100px; |
| 19 | + color: black; |
| 20 | + background-color: white; |
| 21 | + font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; |
| 22 | + font-size: 17px; |
| 23 | + border: none; |
| 24 | + box-shadow: 3px 3px 10px 1px rgb(31, 31, 31); |
| 25 | +} |
| 26 | +button:hover { |
| 27 | + color: #AA00FF; |
| 28 | + cursor: pointer; |
| 29 | + box-shadow: 0px 0px 10px 1px white; |
| 30 | +} |
| 31 | +button:active { |
| 32 | + color: #AA00FF; |
| 33 | + background-color: rgb(221, 221, 221); |
| 34 | + box-shadow: 0px 0px 10px 1px white; |
| 35 | +} |
| 36 | + |
| 37 | +/* Top Nav Bar */ |
| 38 | +#top-nav-bar { |
| 39 | + position: fixed; |
| 40 | + background-color: rgba(19, 19, 19, 0.8); |
| 41 | + backdrop-filter: blur(30px); |
| 42 | + width: 100%; |
| 43 | + padding: 20px; |
| 44 | + font-size: 17px; |
| 45 | + z-index: 10; |
| 46 | + overflow-x: auto; |
| 47 | + overflow-y: hidden; |
| 48 | + white-space: nowrap; |
| 49 | +} |
| 50 | +#top-nav-bar label { |
| 51 | + margin: 16px; |
| 52 | +} |
| 53 | +.nav-item { |
| 54 | + padding: 10px; |
| 55 | + border-radius: 100px; |
| 56 | + color: black; |
| 57 | + background-color: white; |
| 58 | + box-shadow: 0px 0px 10px 3px rgb(31, 31, 31); |
| 59 | +} |
| 60 | +.nav-item:hover { |
| 61 | + color: #AA00FF; |
| 62 | + cursor: pointer; |
| 63 | + box-shadow: 0px 0px 10px 1px #AA00FF; |
| 64 | +} |
| 65 | +#top-nav-bar #title { |
| 66 | + font-weight: normal; |
| 67 | + font-size: 24px; |
| 68 | + margin-left: 0px; |
| 69 | + font-family: 'Josefin Sans', sans-serif; |
| 70 | +} |
| 71 | +#top-nav-bar #title:hover { |
| 72 | + cursor: pointer; |
| 73 | +} |
| 74 | +#top-nav-bar #invite-rd { |
| 75 | + color: white; |
| 76 | + background: linear-gradient(to bottom right, #AA00FF 0%, black 100%); |
| 77 | + font-weight: bold; |
| 78 | +} |
| 79 | + |
| 80 | +/* Extra Eyecandy */ |
| 81 | +.separator { |
| 82 | + border-radius: 100px; |
| 83 | + width: 100px; |
| 84 | + background-color: white; |
| 85 | + height: 10px; |
| 86 | + margin-top: 10px; |
| 87 | + margin-bottom: 10px; |
| 88 | + box-shadow: 3px 3px 10px 1px rgb(31, 31, 31); |
| 89 | +} |
| 90 | +.python3-highlight { |
| 91 | + background: linear-gradient(to bottom right, #306998 0%, #FFD43B 100%); |
| 92 | + width: fit-content; |
| 93 | + color: black; |
| 94 | +} |
| 95 | +.discord-highlight { |
| 96 | + background-color: #5865F2; |
| 97 | + width: fit-content; |
| 98 | + color: white; |
| 99 | +} |
| 100 | +.github-highlight { |
| 101 | + background-color: #000000; |
| 102 | + width: fit-content; |
| 103 | + color: white; |
| 104 | +} |
| 105 | +.green-highlight { |
| 106 | + background-color: green; |
| 107 | + width: fit-content; |
| 108 | + color: white; |
| 109 | +} |
| 110 | +.user-badge { |
| 111 | + color: black; |
| 112 | + background: white; |
| 113 | + border-radius: 4px; |
| 114 | + font-size: 14px; |
| 115 | + padding: 1px; |
| 116 | + margin: 1px; |
| 117 | +} |
| 118 | +.dev-badge { |
| 119 | + color: white; |
| 120 | + background: #EB64A7; |
| 121 | +} |
| 122 | +.contributor-badge { |
| 123 | + color: white; |
| 124 | + background: #E87435; |
| 125 | +} |
| 126 | +#snipe { |
| 127 | + color: white; |
| 128 | + background: #7F2ACF; |
| 129 | +} |
| 130 | +#archisha { |
| 131 | + color: white; |
| 132 | + background: #04B45C; |
| 133 | +} |
| 134 | +#iusearchbtw { |
| 135 | + background: #04E9E9; |
| 136 | +} |
| 137 | +#isobotdev { |
| 138 | + color: white; |
| 139 | + background: #AA00FF; |
| 140 | +} |
| 141 | +#iso69dev { |
| 142 | + color: white; |
| 143 | + background: #10C068; |
| 144 | +} |
| 145 | +#archbotdev { |
| 146 | + color: white; |
| 147 | + background: #1081C1; |
| 148 | +} |
| 149 | +#dumbass { |
| 150 | + color: white; |
| 151 | + background: #CAA216; |
| 152 | +} |
| 153 | +#mafsguy { |
| 154 | + color: white; |
| 155 | + background: #090985; |
| 156 | +} |
| 157 | + |
| 158 | +/* Main Page Content */ |
| 159 | +.jap { |
| 160 | + font-family: 'Noto Serif JP', serif; |
| 161 | +} |
| 162 | +#page-content-container { |
| 163 | + margin-left: 5%; |
| 164 | + margin-right: 5%; |
| 165 | +} |
| 166 | +.item-card { |
| 167 | + background-color: rgb(26, 26, 26); |
| 168 | + border-radius: 20px; |
| 169 | + padding: 30px; |
| 170 | + box-shadow: 0px 0px 10px 15px rgb(10, 10, 10); /* rgb(100, 100, 233) rgb(27, 27, 199)*/ |
| 171 | + margin-top: 25px; |
| 172 | + margin-bottom: 25px; |
| 173 | +} |
| 174 | +#heading-card { |
| 175 | + background: linear-gradient(to right, #AA00FF 0%, #55FF00 50%, #00FFFF 100%); |
| 176 | +} |
| 177 | +#heading-card img { |
| 178 | + width: 250px; |
| 179 | + margin-bottom: 20px; |
| 180 | +} |
| 181 | +#heading-card #title { |
| 182 | + font-size: 50px; |
| 183 | + font-style: italic; |
| 184 | + font-weight: bold; |
| 185 | + font-family: 'Josefin Sans', sans-serif; |
| 186 | +} |
| 187 | +#heading-card #jap-title { |
| 188 | + font-size: 26px; |
| 189 | + font-style: italic; |
| 190 | + font-weight: bold; |
| 191 | + font-family: 'Josefin Sans', sans-serif; |
| 192 | +} |
| 193 | +#heading-card #subtitle { |
| 194 | + font-size: 21px; |
| 195 | +} |
| 196 | +#heading-card #invite-button { |
| 197 | + width: 100%; |
| 198 | + margin-top: 20px; |
| 199 | +} |
| 200 | +#why-to-use-card { |
| 201 | + text-align: left; |
| 202 | +} |
| 203 | +#why-to-use-card #title { |
| 204 | + font-size: 40px; |
| 205 | + font-weight: 800; |
| 206 | + background: #AA00FF; |
| 207 | +} |
| 208 | +#why-to-use-card .subtitle { |
| 209 | + font-size: 32px; |
| 210 | + font-weight: bold; |
| 211 | +} |
| 212 | +#invite-card-end #title { |
| 213 | + font-size: 35px; |
| 214 | + font-style: italic; |
| 215 | + font-weight: bold; |
| 216 | + font-family: 'Josefin Sans', sans-serif; |
| 217 | +} |
| 218 | +#invite-card-end #invite-button { |
| 219 | + width: 100%; |
| 220 | + margin-top: 20px; |
| 221 | +} |
| 222 | + |
| 223 | + |
| 224 | + |
| 225 | +/* Footer */ |
| 226 | +#footer { |
| 227 | + margin-top: 75px; |
| 228 | + background-color: rgb(19, 19, 19); |
| 229 | + font-size: 12px; |
| 230 | + font-family: 'Roboto Mono', monospace; |
| 231 | + text-align: center; |
| 232 | + padding: 10px; |
| 233 | + box-shadow: 0px 0px 10px 8px rgb(10, 10, 10); |
| 234 | +} |
0 commit comments