.title { background-color: #111111; color: white; margin-bottom: 20px; height: 150px; line-height: 150px; font-size: 70px; } .title > button.title { letter-spacing: 10px; border: none; padding-left: 50px; padding-right: 50px; font-family: "DejaVu Serif"; } .title > button.addTimer { float: right; color: white; border: 5px solid white; background-color: #111111; border-radius: 10px; font-size: 50px; margin-top: 35px; margin-right: 50px; } .timers { text-align: center; font-size: 30px; } .timer { line-height: 80px; height: 80px; } .block { display: inline-block; background-color: #EEEEEE; text-align: center; height: 80px; margin-right: 20px; border-radius: 2px; } @keyframes ringing { 30% { background-color: #FED5AE; } 100% { background-color: #FED5AE; } } .timer.isRinging > :not(.remove) { animation: ringing 2s linear infinite alternate; } .timer.isRunning > .time { color: #33AA22; } .timer > button.name { width: 300px; border: none; } .timer > .time { width: 200px; } .timer > .edition { color: #DDDDDD; } .timer > button { border: none; width: 100px; font-size: 30px; } .timer > button.remove { color: #AA2222; } .timer:not(last-child) { margin-bottom: 20px; }