HTMLify
style.css
Views: 7 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | @import url('https://fonts.googleapis.com/css?family=Questrial&display=swap'); * { box-sizing: border-box; } body { font-family: 'Questrial', sans-serif; background-color: #666; display: flex; flex-direction: column; align-items: center; justify-content: center; max-height: 100vh; margin: 0; } h1 { color: #fff; } .screen { cursor: pointer; width: 60%; background-color: #000 !important; border-top-left-radius: 10px; border-top-right-radius: 10px; } .controls { background: #333; color: #fff; width: 60%; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; display: flex; justify-content: center; align-items: center; padding: 10px; } .controls .btn { border: 0; background: transparent; cursor: pointer; } .controls .fa-play { color: #28a745; } .controls .fa-stop { color: #dc3545; } .controls .fa-pause { color: #fff; } .controls .timestamp { color: #fff; font-weight: bold; margin-left: 10px; } .btn:focus { outline: 0; } @media (max-width: 800px) { .screen, .controls { width: 90%; } } |