1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- *{
- margin: 0;
- padding: 0;
- }
- body{
- background-color: white;
- overflow: hidden;
- }
- .nav{
- width: 310px;
- height: 50px;
- position: fixed;
- top: 0;
- left: 50%;
- transform: translateX(-50%);
- display: flex;
- align-items: center;
- justify-content: space-around;
- opacity: .3;
- transition: opacity .5s;
- }
- .nav:hover{
- opacity: 1;
- }
- .clr{
- height: 30px;
- width: 30px;
- background-color: blue;
- border-radius: 50%;
- border: 3px solid rgb(214, 214, 214);
- transition: transform .5s;
- }
- .clr:hover{
- transform: scale(1.2);
- }
- .clr:nth-child(1){
- background-color: #000;
- }
- .clr:nth-child(2){
- background-color: #EF626C;
- }
- .clr:nth-child(3){
- background-color: #fdec03;
- }
- .clr:nth-child(4){
- background-color: #24d102;
- }
- .clr:nth-child(5){
- background-color: #fff;
- }
- button{
- border: none;
- outline: none;
- padding: .6em 1em;
- border-radius: 3px;
- background-color: #03bb56;
- color: #fff;
- }
- .save{
- background-color: #0f65d4;
- }
|