-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCP.css
68 lines (66 loc) · 924 Bytes
/
CP.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
63
64
65
66
67
68
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text&display=swap');
body
{
padding: 0;
margin: 0;
}
li a
{
font-family: 'Crimson Text', serif;
text-transform: capitalize;
}
.first
{
min-height: 96vh;
}
.list-group-item a
{
font-size: 20px;
}
.list-group-item a:hover
{
text-decoration: none;
color: black;
}
.list-group-item:hover
{
background-color: #eee;
}
.other_page
{
position: fixed;
bottom: 30px;
right: 0px;
z-index: 99;
border: none;
outline: none;
color: white;
cursor: pointer;
padding: 15px;
border-radius: 10px;
/*font-size: 28px;*/
background-color: none;
}
.other_page a
{
font-family: 'Crimson Text', serif;
color: blue;
font-size: 20px;
background-color: none;
}
.other_page a:hover
{
color: black;
}
footer
{
height: 35px;
padding-top: 10px;
background-color: rgba(214, 241, 239, 0.75);
font-size: 15px;
font-weight: 200;
}
footer p
{
opacity: 0.825;
}