generated from Seekra/repository-template
75 lines
1.4 KiB
CSS
75 lines
1.4 KiB
CSS
body {
|
|
margin: 0;
|
|
background-color: #ffffff;
|
|
}
|
|
.content-background {
|
|
background:
|
|
radial-gradient(ellipse at 40% 60%, rgba(255,255,255,0.55) 0%, transparent 75%),
|
|
linear-gradient(160deg, #c8d8f0, #7aa0d8, #5077C7, #dce8f8);
|
|
height: 400px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.global-header {
|
|
text-align: center;
|
|
}
|
|
|
|
.global-header h1 {
|
|
display: inline-block;
|
|
margin-bottom: 0;
|
|
background: linear-gradient(to right, #689BDB, #5F8DDC, #5077C7, #4562BE, #374FA5, #22298F);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
font-size: 6rem;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.slogan{
|
|
margin-top: 0;
|
|
font-size: small;
|
|
}
|
|
|
|
form {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 60px;
|
|
width: 100%;
|
|
}
|
|
|
|
.search-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 80%;
|
|
border: 1.5px solid #ccc;
|
|
border-radius: 999px;
|
|
padding: 4px 4px 4px 16px;
|
|
}
|
|
|
|
.search-wrapper input {
|
|
border: none;
|
|
outline: none;
|
|
width: 100%;
|
|
font-size: 1rem;
|
|
background: transparent;
|
|
}
|
|
|
|
.search-button {
|
|
border-radius: 999px;
|
|
border: none;
|
|
padding: 8px 20px;
|
|
background: #4562BE;
|
|
color: white;
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.search-button:hover {
|
|
background: #374FA5;
|
|
}
|
|
|
|
footer{
|
|
text-align: center;
|
|
margin-top: 20px;
|
|
} |