-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
92 lines (77 loc) · 1.14 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
@layer utilities {
.content-auto {
content-visibility: auto;
}
}
@import url("https://fonts.googleapis.com/css?family=Inter:400,700");
$base-spacing-unit: 24px;
$half-spacing-unit: $base-spacing-unit / 2;
$color-alpha: #1772ff;
$color-form-highlight: #eeeeee;
*,
*:before,
*:after {
box-sizing: border-box;
}
body {
font-family: "Inter";
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
}
table {
width: 80%;
}
th {
display: flex;
width: 100%;
background: #000;
padding: ($half-spacing-unit * 1.5) 0;
color: white;
justify-content: center;
text-transform: uppercase;
}
tr {
display: flex;
width: 100%;
background: white;
&:nth-of-type(odd) {
background: $color-form-highlight;
}
}
td {
flex: 1 1 20%;
text-align: center;
}
tr:nth-child(1) {
background-color: rgb(96 165 250 / var(--tw-bg-opacity));
}
textarea, .quote_inner{
max-width: 48rem;
}
table{
width:48rem;
}
@media (max-width:50rem) {
textarea, .quote_inner , table {
max-width: calc(100vw - 2rem);
}
}
html, body {
height: 100%;
}
body {
display: flex;
flex-direction: column;
}
main {
flex: 1 0 auto;
}
footer {
flex-shrink: 0;
}