Куда делся "corner-top" ?

Я наверно глуп , и явно чего-то не понимаю и скорей мой вопрос прост в ответе, но куда делся “corner-top”?

Вот код : 
html {
    padding: 0;
}

body {
    margin: 0;
    padding: 20px;
}

.scene {
    position: relative;
    width: 260px;
    height: 260px;
    background: none;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5);
}

div {
    display: inline-block;
    background: white;
}

/* горизонтальные элементы */
.h {
    width: 50px;
    height: 10px;
}
.h1 {
    position: absolute;
    top: 190px;
    left: 20px;
}
.h2 {
    position: absolute;
    top: 170px;
    left: 80px;
}
.h3 {
    width: 40px;
    position: absolute;
    top: 210px;
    left: 200px;
}
/* вертикальные элементы */
.v {
    width: 10px;
    height: 50px;
}
.v1 {
    position: absolute;
    left: 20px;
    top: 170px;
}
.v2 {
    position: absolute;
    left: 60px;
    top: 170px;
}
.v3 {
    position: absolute;
    left: 100px;
    top: 170px;
}
.v4 {
    position: absolute;
    left: 140px;
    top: 170px;
}
.v5 {
    position: absolute;
    left: 180px;
    top: 170px;
}
.v6 {
    position: absolute;
    left: 200px;
    top: 170px;
}
.
/* уголки */
.corner-top {
    border: 15px solid white;
    border-top-width: 20px;
    border-bottom-width: 0;
    border-top-color: transparent;
    background: none;
}

.corner-bottom {
    border: 15px solid transparent;
    border-top-width: 20px;
    border-bottom-width: 0;
    border-top-color: white;
    background: none;
    position: absolute;
    top: 190px;
    left: 150px;
}

/* лого */
.logo {
    position: absolute;
    top: 80px;
    left: 87px;
    width: 64px;
    height: 64px;
    background: url('/assets/course10/logo.png');
}  

Вот результат (картинка) :

Обратите внимание на точку перед комментарием. Из-за этого всё правило целиком не работает.

1 лайк