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
   | .mainbox .panel {     position: relative;     height: 200px;     width: 300px;     background-color: #abcdef; }
  .mainbox .panel::before {     position: absolute;     top: 0;     left: 0;     width: 10px;     height: 10px;     border-left: 2px solid #02a6b5;     border-top: 2px solid #02a6b5;     content: ''; }
  .mainbox .panel::after {     position: absolute;     top: 0;     right: 0;     width: 10px;     height: 10px;     border-right: 2px solid #02a6b5;     border-top: 2px solid #02a6b5;     content: ''; }
  .mainbox .panel .panel-footer {     position: absolute;     bottom: 0;     left: 0;     width: 100%; }
  .mainbox .panel .panel-footer::before {     position: absolute;     bottom: 0;     left: 0;     width: 10px;     height: 10px;     border-left: 2px solid #02a6b5;     border-bottom: 2px solid #02a6b5;     content: ''; }
  .mainbox .panel .panel-footer::after {     position: absolute;     bottom: 0;     right: 0;     width: 10px;     height: 10px;     border-right: 2px solid #02a6b5;     border-bottom: 2px solid #02a6b5;     content: ''; }
  |