-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.scss
58 lines (46 loc) · 877 Bytes
/
index.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
html,
body {
height: 100%;
margin: 0;
}
body {
align-items: center;
display: flex;
justify-content: center;
background: #ffffff; //linear-gradient(to bottom right, #444444, #60edb3);
font-size: 1.5rem;
}
main {
color: #fff6d5;
font-family: sans-serif;
text-align: center;
}
.logo {
height: 20em;
}
.heart:after {
content: "❤️";
font-size: 1.75em;
}
h1 + .subtitle {
display: block;
margin-top: -1em;
}
.container {
display: grid;
grid-template-rows: auto auto;
grid-gap: 10px; /* Add gap between grid cells */
}
.row {
display: grid;
grid-template-columns: 1fr 1fr; /* Two columns with equal width */
}
.col {
padding: 10px;
background-color: lightgray;
}
.custom-box {
border-width: 10px;
border-color: black;
}
// $box-shadow: 0 1em 1em -0.125em rgba($scheme-invert, 0.4), 0 0px 0 1px rgba($scheme-invert, 0.4);