| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405 |
- /*
- Square Shape
- */
- .square-shape {
- width : 100px;
- height : 100px;
- background : #967ADC;
- }
- /*
- Rectangle Shape
- */
- .rectangle-shape {
- width : 200px;
- height : 100px;
- background : #967ADC;
- }
- /*
- Circle Shape
- */
- .circle-shape {
- width : 100px;
- height : 100px;
- background : #967ADC;
- border-radius : 50px;
- }
- /*
- Oval Shape
- */
- .oval-shape {
- width : 200px;
- height : 100px;
- background : #967ADC;
- border-radius : 100px / 50px;
- }
- /*
- Triangle Up
- */
- .triangle-up-shape {
- width : 100px;
- height : 100px;
- border-right : 50px solid transparent;
- border-left : 50px solid transparent;
- border-bottom : 100px solid #967ADC;
- }
- /*
- Triangle Down
- */
- .triangle-down-shape {
- width : 0;
- height : 0;
- border-right : 50px solid transparent;
- border-left : 50px solid transparent;
- border-top : 100px solid #967ADC;
- }
- /*
- Triangle Left
- */
- .triangle-left-shape {
- width : 0;
- height : 0;
- border-top : 50px solid transparent;
- border-left : 100px solid #967ADC;
- border-bottom : 50px solid transparent;
- }
- /*
- Triangle Right
- */
- .triangle-right-shape {
- width : 0;
- height : 0;
- border-top : 50px solid transparent;
- border-right : 100px solid #967ADC;
- border-bottom : 50px solid transparent;
- }
- /*
- Triangle Top Left
- */
- .triangle-topleft-shape {
- width : 0;
- height : 0;
- border-top : 100px solid #967ADC;
- border-left : 100px solid transparent;
- }
- /*
- Triangle Top Right
- */
- .triangle-topright-shape {
- width : 0;
- height : 0;
- border-top : 100px solid #967ADC;
- border-right : 100px solid transparent;
- }
- /*
- Triangle Bottom Left
- */
- .triangle-bottomleft-shape {
- width : 0;
- height : 0;
- border-bottom : 100px solid #967ADC;
- border-left : 100px solid transparent;
- }
- /*
- Triangle Bottom Right
- */
- .triangle-bottomright-shape {
- width : 0;
- height : 0;
- border-bottom : 100px solid #967ADC;
- border-right : 100px solid transparent;
- }
- /*
- Star Shape
- */
- .star-shape {
- margin : 50px 0;
- position : relative;
- display : block;
- color : #967ADC;
- width : 0;
- height : 0;
- border-left : 100px solid transparent;
- border-bottom : 70px solid #967ADC;
- border-right : 100px solid transparent;
- -webkit-transform : rotate(-35deg);
- -moz-transform : rotate(-35deg);
- -ms-transform : rotate(-35deg);
- -o-transform : rotate(-35deg);
- transform : rotate(-35deg);
- }
- .star-shape:before {
- border-bottom : 80px solid #967ADC;
- border-right : 30px solid transparent;
- border-left : 30px solid transparent;
- position : absolute;
- height : 0;
- width : 0;
- top : -45px;
- right : -65px;
- display : block;
- content : '';
- -webkit-transform : rotate(35deg);
- -moz-transform : rotate(35deg);
- -ms-transform : rotate(35deg);
- -o-transform : rotate(35deg);
- transform : rotate(35deg);
- }
- .star-shape:after {
- position : absolute;
- display : block;
- color : #967ADC;
- top : 3px;
- right : -105px;
- width : 0;
- height : 0;
- border-left : 100px solid transparent;
- border-bottom : 70px solid #967ADC;
- border-right : 100px solid transparent;
- -webkit-transform : rotate(70deg);
- -moz-transform : rotate(70deg);
- -ms-transform : rotate(70deg);
- -o-transform : rotate(70deg);
- transform : rotate(70deg);
- content : '';
- }
- /*
- Pentagon
- */
- .pentagon-shape {
- position : relative;
- width : 54px;
- border-width : 50px 18px 0;
- border-style : solid;
- border-color : #967ADC transparent;
- }
- .pentagon-shape:before {
- content : '';
- position : absolute;
- height : 0;
- width : 0;
- top : -85px;
- right : -18px;
- border-width : 0 45px 35px;
- border-style : solid;
- border-color : transparent transparent #967ADC;
- }
- /*
- Hexagon
- */
- .hexagon-shape {
- width : 100px;
- height : 55px;
- background : #967ADC;
- position : relative;
- }
- .hexagon-shape:before {
- content : '';
- position : absolute;
- top : -25px;
- right : 0;
- width : 0;
- height : 0;
- border-right : 50px solid transparent;
- border-left : 50px solid transparent;
- border-bottom : 25px solid #967ADC;
- }
- .hexagon-shape:after {
- content : '';
- position : absolute;
- bottom : -25px;
- right : 0;
- width : 0;
- height : 0;
- border-right : 50px solid transparent;
- border-left : 50px solid transparent;
- border-top : 25px solid #967ADC;
- }
- /*
- Octagon
- */
- .octagon-shape {
- width : 100px;
- height : 100px;
- background : #967ADC;
- position : relative;
- }
- .octagon-shape:before {
- content : '';
- position : absolute;
- top : 0;
- right : 0;
- border-bottom : 29px solid #967ADC;
- border-right : 29px solid #EEEEEE;
- border-left : 29px solid #EEEEEE;
- width : 42px;
- height : 0;
- }
- .octagon-shape:after {
- content : '';
- position : absolute;
- bottom : 0;
- right : 0;
- border-top : 29px solid #967ADC;
- border-right : 29px solid #EEEEEE;
- border-left : 29px solid #EEEEEE;
- width : 42px;
- height : 0;
- }
- /*
- Heart Shape
- */
- .heart-shape {
- position : relative;
- width : 100px;
- height : 90px;
- }
- .heart-shape:before {
- position : absolute;
- content : '';
- right : 50px;
- top : 0;
- width : 50px;
- height : 80px;
- background : #967ADC;
- border-radius : 50px 50px 0 0;
- -webkit-transform : rotate(45deg);
- -moz-transform : rotate(45deg);
- -ms-transform : rotate(45deg);
- -o-transform : rotate(45deg);
- transform : rotate(45deg);
- -webkit-transform-origin : 100% 100%;
- -moz-transform-origin : 100% 100%;
- -ms-transform-origin : 100% 100%;
- -o-transform-origin : 100% 100%;
- transform-origin : 100% 100%;
- }
- .heart-shape:after {
- position : absolute;
- content : '';
- right : 50px;
- top : 0;
- width : 50px;
- height : 80px;
- background : #967ADC;
- border-radius : 50px 50px 0 0;
- -webkit-transform : rotate(45deg);
- -moz-transform : rotate(45deg);
- -ms-transform : rotate(45deg);
- -o-transform : rotate(45deg);
- transform : rotate(45deg);
- -webkit-transform-origin : 100% 100%;
- -moz-transform-origin : 100% 100%;
- -ms-transform-origin : 100% 100%;
- -o-transform-origin : 100% 100%;
- transform-origin : 100% 100%;
- right : 0;
- -webkit-transform : rotate(-45deg);
- -moz-transform : rotate(-45deg);
- -ms-transform : rotate(-45deg);
- -o-transform : rotate(-45deg);
- transform : rotate(-45deg);
- -webkit-transform-origin : 0 100%;
- -moz-transform-origin : 0 100%;
- -ms-transform-origin : 0 100%;
- -o-transform-origin : 0 100%;
- transform-origin : 0 100%;
- }
- /*
- Diamond
- */
- .cut-diamond-shape {
- border-style : solid;
- border-color : transparent transparent #967ADC transparent;
- border-width : 0 25px 25px 25px;
- height : 0;
- width : 50px;
- position : relative;
- margin : 20px 0 50px 0;
- }
- .cut-diamond-shape:after {
- content : '';
- position : absolute;
- top : 25px;
- right : -25px;
- width : 0;
- height : 0;
- border-style : solid;
- border-color : #967ADC transparent transparent transparent;
- border-width : 70px 50px 0 50px;
- }
- /*
- Diamond Square
- */
- .diamond-shape {
- width : 0;
- height : 0;
- border : 50px solid transparent;
- border-bottom-color : #967ADC;
- position : relative;
- top : -50px;
- }
- .diamond-shape:after {
- content : '';
- position : absolute;
- right : -50px;
- top : 50px;
- width : 0;
- height : 0;
- border : 50px solid transparent;
- border-top-color : #967ADC;
- }
- /*
- Egg Shape
- */
- .egg-shape {
- display : block;
- width : 126px;
- height : 180px;
- background-color : #967ADC;
- border-radius : 50% 50% 50% 50% / 60% 60% 40% 40%;
- }
- .app-shape {
- position : relative;
- color : #FFFFFF;
- vertical-align : middle;
- margin : auto;
- z-index : 10;
- }
- .app-shape span {
- position : absolute;
- top : 50%;
- margin-top : -10px;
- right : 0;
- left : 0;
- z-index : 11;
- }
- .heart-shape span {
- margin-top : -20px;
- }
- @media (min-width: 768px) {
- .jqueryui-ele-container .app-shape {
- display : inline-block;
- }
- }
|