<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body,html{
  padding: 0; margin: 0;
  user-select: none;
  -webkit-user-select:none;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent;
  height: 100%;
  color: #000;
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

svg{margin:0; padding:0; max-width: 100%;}

@font-face {
  font-family: "Proxima nova";
  src: url('proxima-nova-alt-regular-webfont.ttf');
}
@font-face {
  font-family: "Proxima nova";
  font-weight: bold;
  src: url('proxima-nova-alt-bold-webfont.ttf');
}
body{
  -webkit-transition: background .5s ease-out;
  transition: background .5s ease-out;
  font-family: 'Proxima Nova', sans-serif;
}
button{
  font-family: 'Proxima Nova', sans-serif;
}

.st0{
  font-family: 'Proxima Nova', sans-serif;
  font-weight: bold;
  font-size:6px;
}

#display{
  font-family: 'Proxima Nova', sans-serif;
  font-weight: bold;
  font-size:7px;
}



#clock{
  height: 100%;
  position: relative;
}

.digit{
  font-size: 5px;
  font-weight: bold;
}
.digit:hover{
  color: red;
  cursor: hand;
}

.off{
  pointer-events: none;
}

#startstop{
  display: block;
  position: absolute;
  bottom: 20px;
  right: 20px;
  margin: 0 auto; padding: 0;
  height: 80px;  width: 80px;
  background: #00AF88;
  color: white;
  line-height: 80px;
  font-weight: bold;
  border: none;
  outline: none;
  font-size: 30px;
  cursor: pointer;
  border-radius: 99em;
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  background-image: url("play-pause.svg");
  background-repeat: no-repeat;
  background-size: cover;
  color: transparent;
}
#startstop:hover,#startstop:active{
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

#startstop.go{ background-color: #00AF88;
  background-position: top center;
}
#startstop.stop{ background-color: #E3223D;
  background-position: bottom center;
}

.temps-restant{
  fill:#E3223D;
  transition-delay: 0s;
  transition: fill 0.3s cubic-bezier(.25,.8,.25,1);
}
svg:active .temps-restant{
  fill:#ccc;
  transition-delay: 0s;
  transition-duration: 0.3s;
}

.alarming{

  -webkit-animation: alarmAnimation .5s infinite alternate ease-in-out;
  -moz-animation: alarmAnimation .5s infinite alternate ease-in-out;
  -o-animation: alarmAnimation .5s infinite alternate ease-in-out;
  animation: alarmAnimation .5s infinite alternate ease-in-out;
}

@-webkit-keyframes alarmAnimation {
  from { background: #FFF; }
  to { background: #E3223D; }
}
@-moz-keyframes alarmAnimation {
  from { background: #FFF; }
  to { background: #E3223D; }
}
@-o-keyframes alarmAnimation {
  from { background: #FFF; }
  to { background: #E3223D; }
}

#audioalarm{
  display: none;
}


.menu {
  background: rgba(255,255,255,0);
  border-radius: 50%;
  top:8;
  box-shadow: 0 0 0 0 #FFF, 0 0 0 0 #FFF;
  cursor: pointer;
  height: 60px;
  position: absolute;
  left: 8;
  transition:  box-shadow 0.3s cubic-bezier(.19,1,.22,1);
  width: 60px;
  z-index: 2;
}
.menu:hover {
  box-shadow: 0 0 0 8px #FFF, 0 0 0 8px #FFF;
  background: rgba(255,255,255,1);
}
.hamburger {
  position: relative;
  top: 27px;
  left: 15px;
  width: 30px;
  height: 4px;
  background: #000;
  border-radius: 5px;
  display: block;
  transform-origin: center;
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.hamburger:after,
.hamburger:before {
  background: #000;
  content: "";
  display: block;
  transition: .3s ease-in-out;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.hamburger:before {
  top: -10px;
}
.hamburger:after {
  bottom: -10px;
}
input {
  display: none;
}
input:checked ~ label .menu {
  box-shadow: 0 0 0 130vw #FFF, 0 0 0 130vh #FFF;
}
input:checked ~ label .hamburger {
  transform: rotate(45deg);
}
input:checked ~ label .hamburger:after {
  transform: rotate(90deg);
  bottom: 0;
}
input:checked ~ label .hamburger:before {
  transform: rotate(90deg);
  top: 0;
}
input:checked ~ .credits  {
  opacity: 1;
  z-index: 3;
}
.credits {
  position: absolute;
  top:0;
  left: 0;
  font-size: 45px;
  opacity: 0;
  transition: .5s .1s cubic-bezier(0, 1.07, 0, 1.02);
  max-width: 660px;
  text-align: left;
  padding:0 40px 60px 40px;
  margin-top:60px;
  max-height: 90vh;
  overflow-y: scroll;
  box-sizing: border-box;
  background-color: white;
}
.credits p img{
  max-width: 600px;
  width: 100%;
  height: auto;
}

.credits h1{
  color: #00cec9;
  font-size: 5rem;
  line-height: 5rem;
}

.credits p{
  font-size: 1.8rem;
  line-height: 2.3rem;
}

.credits .mentions{
  font-size: small;
  line-height: normal;
  opacity: 0.8;
}
.design-logo{
  position: fixed;
  top: 20px;
  right: 10px;
  height: 60px;
  width: 80px;
  z-index: 99;
}
@media screen and (min-width: 500px) {
  .credits {
    margin-top:0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding:0;
    overflow-y: auto;
  }
  .credits p{
    padding-left: 20px;
    padding-right: 20px;
  }
  .credits h1{
    color: #00cec9;
    font-size: 5rem;
    line-height: 5rem;
    padding-left: 20px;
    padding-right: 20px;
  }
}
</pre></body></html>