-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalgoj.css
52 lines (44 loc) · 1.02 KB
/
algoj.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
@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100;0,300;0,400;0,500;0,700;1,400;1,500;1,700&family=Space+Mono:wght@400;700&display=swap');
.record-title {
font-family: 'Space Mono', monospace;
font-size: 36px;
}
p {
font-family: 'Bitter', serif;
}
button {
background-color: #D1055B;
color: white;
border-radius: 6px;
border: none;
padding: 5px 10px;
transition: all 0.1s ease;
}
button:hover {
animation-duration: .8s;
animation-name: clignoter;
animation-iteration-count: infinite;
transition: none;
}
h1.title {
display: none;
}
.btn {
background-color: #D1055B;
border: 1px solid var(--border-color);
border-radius: 2px;
}
aside.menu header {
display: flex;
align-items: center;
justify-content: center;
}
aside.menu header:before {
display: inline-block;
height: 70px;
width: 100px;
content: "";
background-image: url("logo-algoJ.png");
background-size: 100px 70px;
background-repeat: no-repeat;
}