-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinked-lists.css
More file actions
90 lines (79 loc) · 1.6 KB
/
linked-lists.css
File metadata and controls
90 lines (79 loc) · 1.6 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
@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;
align-items: center;
flex-direction: column;
height: 100vh;
margin-top: 100px;
background-color: var(--background);
}
#linked-lists-ds {
font-weight: bold;
font-size: 38px;
color: var(--text);
}
.operations {
margin-top: 20px;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
}
.operations button {
background-color: var(--primary);
color: var(--text-2);
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
.operations input[type="text"] {
padding: 8px;
border-radius: 5px;
border: 1px solid var(--primary);
}
#list-container {
border: 1px solid var(--secondary);
border-radius: 5px;
padding: 10px;
margin: 25px 25px;
}
.list-element {
display: inline-block;
border: 1px solid var(--secondary);
padding: 5px;
margin-top: 25px;
background-color: #f0f0f0;
}
.node {
border: 1px solid #000;
display: inline-block;
padding: 10px;
margin: 5px;
}
.arrow {
display: inline-block;
margin: 0 5px;
font-size: 20px;
}