56 lines
1.1 KiB
CSS
56 lines
1.1 KiB
CSS
body {
|
|
background-color: #FFFFFF;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
.search-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 80vh;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.search-box {
|
|
width: 50%;
|
|
padding: 1rem;
|
|
border: 1px solid #dfe1e5;
|
|
border-radius: 24px;
|
|
font-size: 1.2rem;
|
|
outline: none;
|
|
transition: box-shadow 0.3s;
|
|
}
|
|
|
|
.search-box:hover, .search-box:focus {
|
|
box-shadow: 0 1px 6px rgba(32,33,36,0.28);
|
|
border-color: rgba(223,225,229,0);
|
|
}
|
|
|
|
.search-buttons {
|
|
margin-top: 1.5rem;
|
|
}
|
|
|
|
.search-buttons button {
|
|
background-color: #f8f9fa;
|
|
border: 1px solid #f8f9fa;
|
|
border-radius: 4px;
|
|
color: #3c4043;
|
|
font-family: arial,sans-serif;
|
|
font-size: 14px;
|
|
margin: 11px 4px;
|
|
padding: 0 16px;
|
|
line-height: 27px;
|
|
height: 36px;
|
|
min-width: 54px;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
}
|
|
|
|
.search-buttons button:hover {
|
|
box-shadow: 0 1px 1px rgba(0,0,0,0.1);
|
|
background-color: #f8f9fa;
|
|
border: 1px solid #dadce0;
|
|
color: #202124;
|
|
}
|