47 lines
No EOL
959 B
CSS
47 lines
No EOL
959 B
CSS
#navbar{
|
|
color : white;
|
|
text-align: center;
|
|
font-family: 'Wellfleet', cursive;
|
|
font-size:max(2.5vw,30px);
|
|
display:flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
#createedit{
|
|
width:28%;
|
|
background:linear-gradient(180deg, #D82903 0%, #720000 100%);
|
|
border-radius: 0 0 2vw 0;
|
|
z-index: 1;
|
|
cursor: pointer;
|
|
padding-bottom:1vw;
|
|
}
|
|
|
|
#blank{
|
|
color:black;
|
|
width:44.5%;
|
|
position:absolute;
|
|
z-index: 0;
|
|
top:6.5vw;
|
|
left:27.75%;
|
|
background-color: black;
|
|
border-radius: 2vw;
|
|
border-top-style: solid;
|
|
border-width: 1.2vw;
|
|
border-image:linear-gradient(180deg, #D82903 0%, #720000) 1 100%;
|
|
}
|
|
|
|
#update{
|
|
width:28%;
|
|
background:linear-gradient(180deg, #D82903 0%, #720000 100%);
|
|
border-radius: 0px 0px 0px 2vw;
|
|
z-index: 1;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#choice {
|
|
display:flex;
|
|
flex-direction: row;
|
|
padding-left:8%;
|
|
padding-right:8%;
|
|
justify-content: space-around;
|
|
} |