-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata-structures.css
More file actions
71 lines (57 loc) · 1.17 KB
/
data-structures.css
File metadata and controls
71 lines (57 loc) · 1.17 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
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--text: #141101;
--text-2: #fcfaf0;
--background: #f9f5e2;
--primary: #e1b404;
--secondary: #136290;
}
*,
*::after,
*::before {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Lato', Arial, Helvetica, sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
margin: 0;
background-color: var(--background);
}
#arrays, #linked-lists, #stacks, #queues, #trees{
text-decoration: none;
color: var(--primary);
margin-right: 20px;
padding: 20px 20px;
}
a {
color: var(--text);
font-size: 20px;
text-transform: capitalize;
margin-bottom: 20px;
background: var(--secondary);
border-radius: 2px;
text-align: center;
}
#title, p {
text-align: center;
}
h1 {
font-weight: bold;
font-size: 38px;
color: var(--text);
}
#main-menu {
margin: 50px auto;
text-align: center;
}