diff --git a/demos/tabs.html b/demos/tabs.html index 909f3dd..8efc91f 100644 --- a/demos/tabs.html +++ b/demos/tabs.html @@ -15,9 +15,9 @@ .tabs ol:first-child{ display: flex; border: 1px solid #B8B3AE; border-bottom: none; } .tabs ol:first-child>li{ flex-grow: 1; padding: 20px; text-align: center; text-transform: uppercase; background: linear-gradient(to bottom, #e5dfd3 0%,#d0c9b8 100%); color: #847E6F; text-shadow: 1px 1px 1px white; - box-shadow: inset 0 0 2px hsla(0,0%,0%,0.15); } + box-shadow: inset 0 0 2px hsla(0,0%,0%,0.15); cursor: pointer;} .tabs ol:first-child>li.active{ background: linear-gradient(to bottom, white 0%,#F0EDE6 100%); - color: #222222; box-shadow: none; } + color: #222222; box-shadow: none; cursor: default; } .tabs ol:nth-child(2){ border: 1px solid #B8B3AE; border-top: none; background: #F0EDE6; } .tabs ol:nth-child(2) > li{ display: none; min-height: 5em; } .tabs ol:nth-child(2) > li.active{ display: flex; justify-content: center; align-items: center; }