├── CNAME ├── img └── logo │ ├── animated.gif │ └── sticker.png ├── README.md ├── css └── styles.css └── index.html /CNAME: -------------------------------------------------------------------------------- 1 | firestartermc.com -------------------------------------------------------------------------------- /img/logo/animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firestarter/web/main/img/logo/animated.gif -------------------------------------------------------------------------------- /img/logo/sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firestarter/web/main/img/logo/sticker.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

web

2 | 3 | # but gitgud lul 4 | 5 | > preview: 6 | 7 | [](https://firestartermc.com) -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;500&display=swap'); 2 | 3 | :root { 4 | --nizz-color: #ff9040; 5 | --bg-color: #131110; 6 | --text-color: #d3d3d3; 7 | } 8 | 9 | * { 10 | font-family: "Lexend", sans-serif; 11 | } 12 | 13 | h1, 14 | h4, 15 | a, 16 | p, 17 | li { 18 | color: var(--text-color); 19 | } 20 | 21 | li { 22 | line-height: 1.5em; 23 | padding: 0.5em; 24 | } 25 | 26 | code { 27 | color: var(--nizz-color); 28 | } 29 | 30 | strong { 31 | font-weight: 500; 32 | } 33 | 34 | body { 35 | display: flex; 36 | align-items: center; 37 | justify-content: center; 38 | background-color: var(--bg-color); 39 | height: 100vh; 40 | margin: 0; 41 | animation: fade 2s; 42 | } 43 | 44 | .content { 45 | margin: auto; 46 | display: flex; 47 | justify-content: center; 48 | flex-direction: column; 49 | align-items: center; 50 | max-width: 40em; 51 | } 52 | 53 | .heading { 54 | display: flex; 55 | justify-content: center; 56 | align-items: center; 57 | margin-bottom: 0.5em; 58 | margin-right: auto; 59 | color: var(--nizz-color); 60 | background: linear-gradient(to right, #FF4621 0%, #FF9B4F 100%); 61 | -webkit-background-clip: text; 62 | -webkit-text-fill-color: transparent; 63 | } 64 | 65 | .main-text { 66 | text-align: left; 67 | max-width: 500px; 68 | } 69 | 70 | .sub-text { 71 | margin-top: 0; 72 | margin-right: auto; 73 | color: #f4f4f4; 74 | font-weight: 500; 75 | } 76 | 77 | .navigation { 78 | margin: 2em 0; 79 | } 80 | 81 | .navigation a { 82 | font-weight: 500; 83 | background-color: #24211F; 84 | padding: 0.35em 0.8em; 85 | border-radius: 0.3em; 86 | text-decoration: none; 87 | color: #fed7aa; 88 | margin-right: 0.3em; 89 | box-shadow: 0 2px 15px 0 rgb(0 0 0 / 2%); 90 | 91 | transition: background-color 0.3s ease; 92 | } 93 | 94 | .navigation a:hover { 95 | background-color: #2C2926; 96 | color: var(--nizz-color); 97 | } 98 | 99 | .discord-button { 100 | background-color: #6775AC !important; 101 | color: white !important; 102 | } 103 | 104 | .discord-button:hover { 105 | background-color: #7483BF !important; 106 | color: #fed7aa !important; 107 | } 108 | 109 | .copyright { 110 | color: #a3a3a3; 111 | text-align: center; 112 | } 113 | 114 | .repeating-before { 115 | list-style: none; 116 | padding: 0; 117 | margin: 0; 118 | } 119 | 120 | .repeating-before li { 121 | padding-left: 1rem; 122 | text-indent: -1.7rem; 123 | } 124 | 125 | .repeating-before li:nth-child(1n)::before { 126 | content: "🪶 "; 127 | } 128 | 129 | .repeating-before li:nth-child(2n)::before { 130 | content: "✨ "; 131 | } 132 | 133 | .repeating-before li:nth-child(3n)::before { 134 | content: "💸 "; 135 | } 136 | 137 | .repeating-before li:nth-child(4n)::before { 138 | content: "🗺️ "; 139 | } 140 | 141 | .repeating-before li:nth-child(5n)::before { 142 | content: "🔥 "; 143 | } 144 | 145 | #logo { 146 | padding-right: 10px; 147 | width: 32px; 148 | height: 32px; 149 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | firestarter - simple, cozy, friendly smp 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 |

firestarter

22 |

A simple, community-centric Minecraft SMP server!

23 |
24 | 25 |
26 | 43 |
44 |
45 | 46 | 54 | 55 |

_ playing right now! 🫶🏻

56 | 57 |
58 | 59 | 60 | 61 | 71 | 72 | 73 | --------------------------------------------------------------------------------