0% found this document useful (0 votes)
5 views3 pages

2

Uploaded by

Prashant Ranjan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views3 pages

2

Uploaded by

Prashant Ranjan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

body {

font-family: 'Arial', sans-serif;


background: linear-gradient(to right, #62e4caaf, #ffc3a0);
color: #50f8af;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
text-align: center;
}
.container {
width: 400px;
}
h1 {
color: #4b79a1;
font-size: 3em;
}
.greeting {
color: #e51937;
font-size: 1.5em;
margin-bottom: 20px;
}
input[type=text] {
padding: 10px;
font-size: 16px;
border: 2px solid #4b79a1;
border-radius: 5px;
width: 100%;
margin-bottom: 20px;
}
button {
padding: 10px 20px;
font-size: 16px;
margin: 5px 0;
color: white;
background-color: #4b79a1;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #39536b;
}
ul {
list-style: none;
padding: 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.shortcut {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 10px;
margin: 5px;
background-color: #fff;
border: 1px solid #4b79a1;
border-radius: 5px;
color: #333;
width: 48px;
position: relative;
height: auto;
}
.shortcut img {
width: 32px;
height: 32px;
margin-bottom: 5px;
cursor: pointer;
}
.shortcut-name {
font-size: 12px;
color: #fff;
font-weight: bold;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 48px;
}
.menu {
position: absolute;
top: 0;
right: 0;
cursor: pointer;
color: #4b79a1;
font-size: 18px;
display: none;
}
.menu:hover {
color: #e51937;
}
.shortcut:hover .menu {
display: block;
}
.options {
display: none;
position: absolute;
top: 25px;
right: 0;
background: #fff;
border: 1px solid #4b79a1;
border-radius: 5px;
padding: 5px;
z-index: 1;
}
.options button {
display: block;
width: 100%;
background: none;
color: #4b79a1;
border: none;
text-align: left;
padding: 5px;
cursor: pointer;
}
.options button:hover {
background-color: #39536b;
color: #fff;
}
.plus {
display: flex;
justify-content: center;
align-items: center;
width: 48px;
height: 48px;
background-color: #4b79a1;
color: white;
font-size: 30px;
border: 1px solid #39536b;
border-radius: 5px;
cursor: pointer;
margin: 5px;
}
.hidden {
display: none;
}

You might also like