-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (53 loc) · 876 Bytes
/
style.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
body {
margin: 0;
font-family: "Fira Code";
background-color: #eeedde;
}
header {
display: grid;
height: 100px;
background: #203239;
justify-content: center;
}
header ul {
padding: 0;
list-style: none;
}
header ul li {
display: inline-block;
}
header ul li button {
border: none;
background-color: rgba(255, 255, 255, 0.1);
padding: 20px 50px;
color: white;
font-family: "Fira Code";
font-size: 16px;
font-weight: bold;
text-decoration: none;
}
main {
display: grid;
justify-content: center;
}
#wrapper {
display: flex;
flex-direction: row;
background-color: #f7f7e7;
height: 400px;
width: 1000px;
border-radius: 10px;
margin: auto;
margin-top: 10px;
align-items: flex-end;
}
.array {
background-color: #141e27;
}
.slide-container {
display: grid;
justify-content: center;
}
#slider {
width: 200px;
}