This repository has been archived on 2021-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vuejs_course/2021-01-13 gs-01-starting-p.../gs-01-starting-project/styles.css

42 lines
476 B
CSS
Raw Normal View History

2021-01-13 21:21:18 +01:00
* {
2021-01-13 21:25:49 +01:00
box-sizing: border-box;
2021-01-13 21:21:18 +01:00
}
html {
2021-01-13 21:25:49 +01:00
font-family: sans-serif;
2021-01-13 21:21:18 +01:00
}
body {
2021-01-13 21:25:49 +01:00
margin: 0;
2021-01-13 21:21:18 +01:00
}
#app {
2021-01-13 21:25:49 +01:00
margin: 3rem auto;
max-width: 40rem;
padding: 1rem;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
2021-01-13 21:21:18 +01:00
}
2021-01-13 21:25:49 +01:00
label,
input {
margin-bottom: 0.5rem;
display: block;
width: 100%;
2021-01-13 21:21:18 +01:00
}
label {
2021-01-13 21:25:49 +01:00
font-weight: bold;
2021-01-13 21:21:18 +01:00
}
ul {
2021-01-13 21:25:49 +01:00
list-style: none;
margin: 1rem 0;
padding: 0;
2021-01-13 21:21:18 +01:00
}
li {
2021-01-13 21:25:49 +01:00
margin: 1rem 0;
padding: 1rem;
border: 1px solid #ccc;
}