-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
60 lines (51 loc) · 1.03 KB
/
styles.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
body {
background-color: #181818;
color: white;
}
.navLink {
display: inline-block;
padding-top: 15px;
padding-right: 30px;
}
.navContainer {
background-color: #9f21c0;
height: 50px;
min-width: 545px;
}
.listContainer {
padding-inline-end: 12%;
padding-inline-start: 12%;
}
.pageLink {
color: white;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
}
.floatContainer {
float: right;
}
.rightTriangle {
background-color: #9f21c0;
width: 0;
height: 0;
border-left: 20px solid transparent;
border-bottom: 20px solid #181818;
float: right;
}
.leftTriangle {
background-color: #9f21c0;
width: 0;
height: 0;
border-right: 20px solid transparent;
border-bottom: 20px solid #181818;
display: inline-block;
}
.currentPage {
background-color: #2191C0;
padding: 5px 15px 5px 15px;
border-radius: 10px;
}
.pageTitle {
padding-left: 20px;
font-size: 18px;
}