Website/calc/style.css

44 lines
631 B
CSS
Raw Normal View History

2020-07-18 04:10:49 +00:00
body {
background: #111;
color: #fff;
font-family: "Open Sans";
}
button {
background: #222;
border: 1px solid #000;
padding: 7px;
color: white;
transition: 0.1s;
margin: 2px;
border-radius: 3px;
}
button:hover {
background: #333;
cursor: pointer;
}
select {
display: inline-block;
position: relative;
overflow: hidden;
padding: 5px;
background: #222;
border: 1px solid #000;
border-radius: 3px;
color: white;
cursor: pointer;
-webkit-appearance: none;
2020-08-02 23:06:29 +00:00
}
2020-07-18 04:10:49 +00:00
select::before {
2020-08-02 23:06:29 +00:00
border-bottom-style: solid;
border-top: none;
2020-07-18 04:10:49 +00:00
}
select:after {
2020-08-02 23:06:29 +00:00
margin-top: 7px;
border-top-style: solid;
border-bottom: none;
2020-07-18 04:10:49 +00:00
}