-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmain.css
109 lines (88 loc) · 1.97 KB
/
main.css
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
@import url("https://fonts.googleapis.com/css2?family=DM+Mono&family=DM+Sans&display=swap");
body {
height: 100%;
margin: 0;
padding: 0;
font-family: "DM Sans", sans-serif; }
h1 {
margin: 0 0 1rem 0;
font-family: "DM Mono", sans-serif; }
h2 {
margin: 0 0 1rem 0;
font-family: "DM Mono", sans-serif; }
h3 {
margin: 0 0 1rem 0;
font-family: "DM Mono", sans-serif; }
h4 {
margin: 0 0 1rem 0;
font-family: "DM Mono", sans-serif; }
h5 {
margin: 0 0 1rem 0;
font-family: "DM Mono", sans-serif; }
h6 {
margin: 0 0 1rem 0;
font-family: "DM Mono", sans-serif; }
section > div {
padding: 2rem; }
a {
text-decoration: none;
border-radius: 1rem;
padding: 0.5rem 1rem;
margin: 0 0.5rem 0.5rem 0;
background-color: #123456;
color: #f3f8fc; }
a a {
border-radius: 1rem;
padding: 0.5rem 1rem;
margin: 0 0.5rem 0.5rem 0;
background-color: #f3f8fc;
color: #123456;
text-align: center; }
span {
font-weight: 700; }
.light {
background-color: #f3f8fc;
color: #123456; }
.dark {
background-color: #123456;
color: #f3f8fc; }
.dark a {
border-radius: 1rem;
padding: 0.5rem 1rem;
margin: 0 0.5rem 0.5rem 0;
background-color: #f3f8fc;
color: #123456;
text-align: center; }
.hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center; }
.hero h1 {
font-size: 14vh; }
.bar {
display: flex;
flex-flow: row wrap;
justify-content: center;
margin-bottom: 0.5rem; }
.grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 1rem;
padding-bottom: 1rem; }
::-moz-selection {
background: #c3dbf2; }
::selection {
background: #c3dbf2; }
::-webkit-scrollbar {
width: 1rem;
height: 1rem; }
::-webkit-scrollbar-track {
background: #f3f8fc; }
::-webkit-scrollbar-thumb {
background: #123456; }
* {
scrollbar-width: thin;
scrollbar-color: #123456 #f3f8fc;
box-sizing: border-box; }
/*# sourceMappingURL=main.css.map */