Due to intensive development, service.js grew complex and convoluted. With lessons learned we shall prepare a cleaner and leaner version of the code.
17 lines
303 B
CSS
17 lines
303 B
CSS
.my-block {
|
|
max-width: 500px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
font-size: 1rem;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
.my-control {
|
|
overflow-y: auto;
|
|
height: 300px;
|
|
border-radius: 10px;
|
|
background-color: #f5f5f5;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
line-height: 20px;
|
|
}
|