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/basics-10-styling-starting-.../styles.css

38 lines
555 B
CSS
Raw Normal View History

2021-01-18 22:27:27 +01:00
* {
2021-01-18 22:38:28 +01:00
box-sizing: border-box;
2021-01-18 22:27:27 +01:00
}
html {
2021-01-18 22:38:28 +01:00
font-family: "Jost", sans-serif;
2021-01-18 22:27:27 +01:00
}
body {
2021-01-18 22:38:28 +01:00
margin: 0;
2021-01-18 22:27:27 +01:00
}
header {
2021-01-18 22:38:28 +01:00
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
margin: 3rem;
border-radius: 10px;
padding: 1rem;
background-color: #4fc08d;
color: white;
text-align: center;
2021-01-18 22:27:27 +01:00
}
#styling {
2021-01-18 22:38:28 +01:00
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
margin: 3rem;
border-radius: 10px;
padding: 1rem;
text-align: center;
2021-01-18 22:27:27 +01:00
}
.demo {
2021-01-18 22:38:28 +01:00
width: calc(100% - 32px);
height: 100px;
margin: 16px;
border: 2px dashed #ccc;
}