@import "constants.css";

.three-of-one {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: lavenderblush;
}

.one-of-three {
    background-size: 180px 180px;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1em;
    transition: .2s;
}

.one-of-three:hover {
    background-size: 200px 200px;
    width: 200px;
    height: 200px;
    font-size: 1.2em;
    text-shadow: white 1px 1px;
}

#clean-note {
    background-image: url("images/notes/clean-note.png");
}

#holepunched-note {
    background-image: url("images/notes/holepunched-note.png");
}

#postit-note {
    background-image: url("images/notes/postit-note.png");
}

.postit-note {
    background-image: url("images/notes/postit-1.png");
    background-size: 210px 210px;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1em;
    padding: 15px;
    cursor: pointer;
    
    > * {
        pointer-events: none;
    }
}

.postit-note:hover::after {
    content: "click me!";
    font-weight: bold;
    color: var(--signature-red);
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.postit-note1 {
    background-image: url("images/notes/postit-1.png");
}

.postit-note2 {
    background-image: url("images/notes/postit-2.png");
}

.postit-note3 {
    background-image: url("images/notes/postit-3.png");
}

.big-note {
    /*display: flex;*/
    border: solid 10px #0000;
    border-image-source: url("images/notes/note-background.png");
    border-image-slice: 5% fill;
    border-image-repeat: repeat;
    transform-origin: left top;
    width: calc(100% - 21px);
    /*height: 10000px;*/
    font-size: 1em;
    transition: width 1s, height 1s, font-size 1s, border-width 1s;
    transition-delay: 0, 0, 1s;
    overflow: hidden;
    position: relative;
    /*transform: scaleY(1);*/
}

.big-note.hidden {
    /*scale: 0;*/
    width: 0;
    /*height: 0;*/
    font-size: 0;
    border-width: 0;
    /*transform: scaleY(0);*/
    /*border: solid 0px;*/
}

.ipod {
    margin: 10px;
    position: relative;
    width: 250px;
    height: 250px;
    cursor: pointer;
    
    img {
        user-select: none;
    }
}

.ipod:hover::after {
    content: "click to play/pause\Ahold shift + scroll to move through song";
    white-space: pre;
    position: absolute;
    font-size: 12px;
    padding: 8px;
    right: 0;
    text-align: right;
    bottom: 0;
    text-shadow: var(--signature-yellow) 1px 1px;
    /*bottom: 0;*/
}

.ipod-songprogress {
    color: yellow;
    position: absolute;
    left: 21%;
    top: 33%;
    width: 30%;
    text-align: center;
    z-index: 1;
}

.ipod-itself {
    position: absolute;
    width: 100%;
    z-index: 0;
}

.bg-lined {
    position: relative;
    font-size: 15px;
    padding-left: 100px;
    line-height: 30px;
    background: repeating-linear-gradient(var(--signature-yellow), var(--signature-yellow) 29px, var(--signature-orange) 29px, var(--signature-orange) 30px);
    height: 100vh;
    background-position-y: -3px;
}

.bg-lined::after {
    position: absolute;
    top: 0;
    left: 80px;
    width: 1px;
    height: 100vh;
    background-color: var(--signature-orange);
    content: "";
}