.one {
left: 200px;
top: 200px;
width: 100px;
height: 30px;
border-radius: 10px;
inner-shadow: 0.5px 0.5px 2px #FF0000;
text-justify: center;
}
.two {
width: 50px;
height: 50px;
background-color: green;
flex-direction: column;
}
.three {
width: 200px;
height: 200px;
background-color: blue;
}
.four {
width: 300px;
height: 300px;
background-color: yellow;
}
.five {
background-color: red;
}
.six {
height: 30px;
width: 30px;
background-color: #808080;
}
.test {
flex-grow: 1.0;
height: 50px;
background-color: red;
}
.test2 {
flex-basis: 30px;
flex-grow: 2.0;
height: 50px;
background-color: green;
}
dropdown {
height: 30px;
color: black;
border-width: 1px;
border-color: black;
border-radius: 3;
text-justify: center;
}
dropdown label {
color: black;
text-justify: center;
}
dropdown .icon {
text-justify: center;
color: #ff5e1a;
width: 20px;
}
dropdown>.container {
top: 100%;
background-color: white;
border-color: black;
border-width: 1px;
}
dropdown>.container>.item {
height: 30px;
width: 100px;
color: black;
background-color: white;
transition: background-color 0.1 0.0;
}
dropdown>.container>.item:hover {
color: white;
background-color: #ff5e1a;
transition: background-color 0.1 0.0;
}