esrom/eisrom_ui/assets/css/app.css

45 lines
662 B
CSS
Raw Normal View History

2019-07-14 09:56:20 +00:00
body {
2019-10-25 11:33:22 +00:00
background-color: lightblue;
2019-07-14 09:56:20 +00:00
}
h1 {
2019-10-25 11:33:22 +00:00
font-size: 30px;
font-family: "Verdana", Verdana, sans-serif;
2019-07-14 09:56:20 +00:00
}
h2 {
2019-10-25 11:33:22 +00:00
font-size: 25px;
font-family: "Verdana", Verdana, sans-serif;
font-weight: normal;
2019-07-14 09:56:20 +00:00
}
p {
2019-10-25 11:33:22 +00:00
font-size: 20px;
font-family: "Verdana", Verdana, sans-serif;
2019-07-14 09:56:20 +00:00
}
#buttonwrap {
2019-10-25 11:33:22 +00:00
text-align: center;
2019-07-14 09:56:20 +00:00
}
.button {
2019-10-25 11:33:22 +00:00
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
width: 70%;
height: 100px;
2019-07-14 09:56:20 +00:00
}
2019-10-25 11:33:22 +00:00
.button.stop {
background-color: red;
}
2019-07-14 09:56:20 +00:00
#hintbutton {
background-color: white;
font-size: 15px;
2022-10-09 06:09:42 +00:00
}