123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- .wrapper{
- display: flex;
- flex-direction: column;
- width: 100%;
- min-width: 98vw;
- }
- .header{
- display: flex;
- justify-content: space-between;
- height: 12vh;
- max-height: 80px;
- background:#d3b714;
- }
- .header img{
- height: 80px;
- }
- .menu{
- display: inline-flex;
- align-items: center;
- text-align: center;
- }
- .menu a{
- width: 80px;
- font-size: 20px;
- text-decoration: none;
- color:#000;
- }
- .main{
- display: flex;
- justify-content: space-between;
- height:100%;
- min-height: 85vh;
- }
- .main aside{
- width: 210px;
- align-items: flex-start;
- background: #c798b9;
- align-items: center;
- text-align: center;
- padding-top:20px;
- }
- .main aside:last-child{
- background: #9cb1c7;
- }
- aside a{
- font-size: 25px;
- text-decoration: none;
- color:#000;
- }
- .footer{
- display: flex;
- left: 0;
- bottom: 0;
- background:#86ec86;
- height: 4vh;
- align-items: center;
- justify-content:center;
- }
- .footer a{
- font-size: 20px;
- text-decoration: none;
- color:#000;
- }
- .content{
- display: flex;
- flex-wrap: wrap;
- justify-content: space-around;
- }
- .block{
- display: flex;
- border: 3px solid #bbb;
- border-radius: 20px;
- flex-grow: 1;
- flex-direction: column;
- align-items: center;
- width: 150px;
- min-width:25%;
- margin: 10px;
- padding: 10px;
- align-content: space-around;
- }
- .block img{
- width: 100px;
- height: 100px;
- border-radius: 50%;
- border: 10px solid #9e99b7;
- bottom: 0;
- transition: transform 1s;
- }
- .block img:hover{
- border: 10px solid black;
- }
- .block h2{
- font-size: 30px;
- margin:20px;
- font-weight: 600;
- }
- .block p{
- text-align: justify;
- margin:20px;
- }
- .btn {
- display: flex;
- margin-top: auto;
- margin-bottom: 5px;
- }
- .btn a{
- display: inline-flex;
- align-items: center;
- justify-content: center;
- font-size: 20px;
- text-decoration: none;
- color:#fff;
- background: #757;
- height: 30px;
- width: 70px;
- border-radius: 15px;
- }
- .holder{
- display: flex;
- border: 5px solid #000;
- border-radius: 50px 50px 0px 0px;
- flex-grow: 1;
- width: 100%;
- height: 100px;
- margin: 10px;
- flex-wrap: wrap;
- overflow: hidden;
- background: #0e7f12;
- }
- .item{
- display: inline-flex;
- background: #fd644d;
- order: 1;
- height: 50%;
- width: 50%;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- font-size: 20px;
- text-decoration: none;
- }
- .item:nth-child(2){
- background: #4983b2;
- order: 4;
- width: calc(100%/3);
- }
- .item:nth-child(3){
- background: #663797;
- order: 3;
- width: calc(100%/3);
- }
- .item:nth-child(4){
- background: #0e7f12;
- order: 5;
- width: calc(100%/3);
- }
- .item:last-child{
- background: #fda429;
- order: 2;
- }
|