#e8e8e8
1.one-div { 2 --dark: #3a7aba; 3 --light: #50a5f5; 4 --low-light: #50ccf5; 5 background-color: var(--light); 6 background: linear-gradient(-45deg, var(--light), var(--low-light)); 7 box-shadow: 5px 5px 0 white, 10px 10px 0 var(--dark); 8 border-right: 5px solid var(--dark); 9 border-bottom: 5px solid var(--dark); 10 border-radius: .5rem 2rem .5rem .5rem; 11 width: 200px; 12 height: 200px; 13 display: flex; 14 justify-content: center; 15 align-items: flex-start; 16 position: relative; 17 overflow: hidden; 18} 19 20.one-div::after { 21 content: "NOTE BOOK"; 22 color: var(--dark); 23 font-weight: 600; 24 border-radius: .5rem; 25 padding: .5rem 1rem; 26 margin-top: 2rem; 27 background-color: white; 28 letter-spacing: 1px; 29 z-index: 50; 30} 31 32.one-div::before { 33 content: ""; 34 position: absolute; 35 bottom: 0; 36 left: 10%; 37 border-left: 2px solid white; 38 height: 10%; 39}
Comments
MIT License