-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
112 lines (100 loc) · 1.57 KB
/
main.css
File metadata and controls
112 lines (100 loc) · 1.57 KB
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
110
111
112
:root {
--black: #050a1a;
--med: #17317d;
--light: #a5b7ee;
--pale: #e7ecfb;
--white: #f7f9fe;
}
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
font-family: "Inter", sans-serif;
display: flex;
flex-direction: column;
background-color: var(--pale);
color: var(--black);
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: var(--med);
}
a {
color: var(--med);
box-shadow: inset 0 -2px 0 var(--light);
padding: 0px 1px;
transition: background 0.1s cubic-bezier(0.33, 0.66, 0.66, 1);
font-weight: bold;
text-decoration: none;
}
a:hover {
color: var(--med);
background: var(--light);
text-decoration: none;
}
a:visited {
color: var(--med);
text-decoration: none;
}
img {
border-radius: 8px;
}
.content {
flex: 1 0 auto;
margin: auto;
margin-bottom: 15px;
}
.container {
padding: 0px 10px;
max-width: 1200px;
}
.card-wrap {
margin: 0px;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
grid-gap: 1rem;
padding-bottom: 15px;
}
.card {
background-color: var(--white);
border-radius: 8px;
}
.card-text {
padding: 15px;
}
.footer {
flex-shrink: 0;
background-color: var(--med);
color: var(--pale);
text-align: center;
padding: 25px 0px;
}
#lab {
margin-top: 15px;
}
::-moz-selection {
background: var(--light);
}
::selection {
background: var(--light);
}
::-webkit-scrollbar {
width: 5px;
height: 5px;
}
::-webkit-scrollbar-track {
background: var(--pale);
}
::-webkit-scrollbar-thumb {
background: var(--med);
}
* {
scrollbar-width: thin;
scrollbar-color: var(--med) var(--pale);
}