123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- body {
- margin: 0;
- font-family: Georgia, 'Times New Roman', Times, serif;
- }
- html {
- box-sizing: border-box;
- }
- *,
- *:before,
- *:after {
- box-sizing: inherit;
- }
- .wrapper {
- width: 100%;
- position: relative;
- overflow: hidden;
- display: flex;
- flex-direction: column;
- min-height: 100vh;
- }
- img {
- max-width: 100%;
- height: auto;
- vertical-align: top;
- }
- .header {
- background: #D2B837;
- padding: 15px 30px;
- }
- .header-wrap {
- display: flex;
- align-items: center;
- }
- .nav {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- flex-grow: 1;
- }
- .nav-list {
- display: flex;
- align-items: center;
- list-style: none;
- margin: 0;
- padding-left: 0;
- }
- .nav-item+.nav-item {
- padding-left: 15px;
- }
- .nav-link {
- color: black;
- text-decoration: none;
- }
- .nav-link:hover {
- opacity: .7;
- }
- .content {
- display: flex;
- flex-grow: 1;
- }
- .aside {
- max-width: 210px;
- width: 100%;
- padding: 10px;
- text-align: center;
- }
- .aside-left {
- background: #c798b9;
- order: -1;
- }
- .aside-right {
- background: #9cb1c7;
- }
- .main {
- padding: 20px;
- text-align: center;
- display: flex;
- flex-direction: column;
- }
- .boxes {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-around;
- }
- .box {
- height: 400px;
- width: 320px;
- border: 2px solid grey;
- border-radius: 25px;
- margin-bottom: 15px;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- align-items: center;
- }
- .pict {
- height: 80px;
- width: 80px;
- border-radius: 50%;
- border: 8px solid #c798b9;
- /* position: absolute;
- transform: translateY(-140px); */
- }
- h2 {
- font-size: 20px;
- }
- .about {
- text-align: top;
- }
- .btn {
- height: 25px;
- width: 50px;
- background: #685274;
- color: white;
- border-radius: 25px;
- border-style: none;
- }
- .btn:hover {
- transition: all .3s ease-in;
- opacity: .8;
- background-color: #86ec86;
- border: 2px solid #0e7f12;
- }
- .task3 {
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- }
- .holder {
- display: flex;
- flex-wrap: wrap;
- /* justify-content: center; */
- max-height: 200px;
- width: 600px;
- border: 2px solid black;
- border-radius: 25px 25px 0px 0px;
- }
- .holder>.item:first-child {
- background-color: #fd644d;
- order: 1;
- flex-grow: 1;
- border-radius: 25px 0px 0px 0px;
- }
- .holder>.item:last-child {
- background-color: #fda429;
- order: 2;
- flex-grow: 1;
- border-radius: 0px 25px 0px 0px;
- }
- .holder>.item:nth-child(3) {
- background-color: #663797;
- order: 3;
- height: calc(100px - 2px);
- /* width: calc(200px - 2px); */
- }
- .holder>.item:nth-child(2) {
- background-color: #4983b2;
- order: 4;
- height: calc(100px - 2px);
- width: calc(200px - 4px);
- }
- .holder>.item:nth-child(4) {
- background-color: #0e7f12;
- order: 5;
- height: 98px;
- /* width: calc(200px - 2px); */
- }
- .item {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100px;
- width: 200px;
- }
- .footer {
- background: #86ec86;
- padding: 10px;
- text-align: center;
- }
|