├── README.md ├── styles.css ├── index.html └── script.lua /README.md: -------------------------------------------------------------------------------- 1 | This folder holds the source code for buss://register.it 2 | -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #242424; 3 | padding: 10px; 4 | border-radius: 12px; 5 | } 6 | 7 | introduction { 8 | direction: column; 9 | align-items: center; 10 | 11 | gap: 10; 12 | margin-bottom: 40px; 13 | } 14 | 15 | header { 16 | font-size: 48px; 17 | font-weight: ultralight; 18 | font-style: italic; 19 | } 20 | 21 | result { 22 | margin-top: 20px; 23 | 24 | font-size: 24px; 25 | } 26 | 27 | list { 28 | align-items: center; 29 | 30 | direction: row; 31 | gap: 60; 32 | margin-top: 20px; 33 | margin-bottom: 20px; 34 | } 35 | 36 | list2 { 37 | align-items: center; 38 | 39 | direction: column; 40 | } 41 | 42 | item { 43 | direction: column; 44 | gap:10; 45 | } 46 | 47 | item-title { 48 | font-size: 24px; 49 | font-weight: bold; 50 | } 51 | 52 | input { 53 | padding: 5px; 54 | border-color: #616161; 55 | border-width: 1px; 56 | border-style: solid; 57 | border-radius: 12px; 58 | 59 | width: 400px; 60 | } 61 | 62 | spacing { 63 | margin-bottom: 10px; 64 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Bussin Registrar 5 | 6 | 7 | 8 | 9 | 10 | 11 |