School/IKEA_scraper/web/style.css
Kristofers Solo 4ae684acdb Added web UI
2021-09-14 21:10:41 +03:00

141 lines
1.3 KiB
CSS

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
vertical-align: baseline;
}
html,
body {
font-family: "Roboto", sans-serif;
background: #f2f2f2;
}
#product {
display: flex;
margin-top: 10px;
height: 30px;
margin-left: auto;
margin-right: auto;
background-color: #333333;
width: 95%;
min-width: 100px;
border-radius: 5px;
cursor: pointer;
color: #cccccc;
}
#show {
display: block;
border: none;
margin: auto;
margin-top: 10px;
margin-bottom: 10px;
min-width: 200px;
background: #666666;
border-radius: 5px;
padding: 10px;
color: #f2f2f2;
outline: none;
width: 95%;
font-size: 18px;
text-transform: uppercase;
cursor: pointer;
transition: transform 0.7s ease;
}
#show:hover {
opacity: 0.9;
transform: scale(1.01);
}
#info {
color: #666666;
display: block;
text-align: center;
font-size: 16px;
font-weight: bold;
}