-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
75 lines (69 loc) · 1.26 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
html{
font-family: 'Raleway', sans-serif;
background-color: #2196F3;
font-size: 25px;
}
a {
color: blue;
}
ul {
background-color: #2196F3;
grid-template-columns: max-content;
grid-gap: 10px;
grid-row-gap: 20px;
list-style-type: none;
display: grid;
padding: 0;
justify-content: center;
}
li {
text-align: center;
grid-area: auto;
background-color: rgba(255, 255, 255, 0.8);
padding-left: 20px;
padding-right: 20px;
}
li a {
/* color: black;
text-align: center; */
text-decoration: none;
}
.compact a:not(:first-child) h3 {
margin-top: 0;
}
.compact a:not(:last-child) h3 {
margin-bottom: 0;
}
/* button {
font-family: 'Raleway', sans-serif;
background-color: rgba(255, 255, 255, 0.8);
font-size: 25px;
border-width: 0;
margin-bottom: 10px;
}
button:hover {
background-color: rgba(0, 0, 0, 0.1);
}
button:active {
background-color: rgba(0, 0, 0, 0.3);
}
button h1 {
margin: 0;
} */
/*scrollbar*/
/* width */
::-webkit-scrollbar {
width: 15px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f0f0f0;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #cdcdcd;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #a6a6a6;
}