mwmbl/mwmbl/tinysearchengine/static/index.css
nitred 11eedcde84 renamed package to mwmbl
- renamed package to mwmbl in pyproject.toml
- tinysearchengine and indexer modules have been moved into mwmbl package folder
- analyse module has been left as is in the root of the repo
- import statements in tinysearchengine now use mwmbl.tinysearchengine
- import statements in indexer now use mwmbl.indexer or mwmbl.tinysearchengine or relative imports like .paths
- import statements in analyse now use mwmbl.indexer or mwmbl.tinysearchengine
- final CMD in Dockerfile now uses updated path mwmbl.tinysearchengine.app
- fixed a couple of import statement errors in tinysearchengine/indexer.py
2021-12-28 12:35:46 +01:00

79 lines
905 B
CSS

html {
font-family: Verdana, Geneva, sans-serif;
background: #dcdced;
}
p {
font-size: 25px;
width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin: 3px;
}
div {
margin-top: 15px;
margin-bottom: 15px;
}
.url {
margin-top: 0px;
font-size: 20px;
}
#container {
width: 1024px;
margin: 0 auto;
}
#search {
display: block;
width: 100%;
outline: none;
font-size: 50px;
border: 2px solid #ccc;
border-width: 4px;
border-radius: 50px;
padding: 10px;
padding-left: 35px;
margin-top: 50px;
}
a {
text-decoration: none;
color: #555555;
}
div .result:hover {
background: #f0f0ff;
}
div .selected {
background: #f0f0ff;
}
div .result {
padding: 10px;
}
span .term {
font-weight: bold;
}
.title {
color: #1a0daa;
/* color: black; */
}
.extract {
}