-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
50 lines (45 loc) · 849 Bytes
/
style.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,300;1,400;1,900&display=swap');
// root file
$-primary-color: #f5f5f5;
$-secondary-color: steelblue;
$-color-white: #fff;
* {
box-sizing: border-box;
outline: none;
margin: 0;
padding: 0;
}
a,
a:hover {
text-decoration: none;
color: inherit;
}
body {
font-family: 'Roboto', sans-serif;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
header {
h1 {
margin-bottom: 2rem;
font-weight: bold;
font-size: 2rem;
text-transform: capitalize;
margin-top: 3rem;
}
}
.table-container {
width: 88%;
border: 4px solid $-secondary-color;
padding: 1.5rem;
margin: 0 auto;
max-width: 1200px;
}
@media only screen and (max-width: 678px) {
header h1 {
font-size: 1.3rem;
margin-top: 2rem;
}
}