forked from thecuriousteam/PyLibLog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (70 loc) · 1.39 KB
/
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
body{
/* background-image: url(cherry.PNG); */
background-color: rgb(60, 17, 218);
background: radial-gradient(circle at center,
rgb(10, 12, 12), rgb(36, 36, 36), rgb(103, 8, 245)),100% ;
}
.container{
height: 100vw;
width: 80vw;
background-color: rgb(248, 248, 250);
resize: vertical;
box-shadow: 0 5px 10px rgb(246, 245, 245);
border-radius: 10px;
margin-top: 60px;
margin-left: 10px
}
.scrollbar-link{
width: 15%;
height: 100%;
border: 0.1px solid grey;
overflow: auto;
background: rgb(42, 1, 99);
padding: 3px;
}
#aa{
display: inline-block;
padding: 15px;
text-decoration: none;
color: rgb(250, 251, 249);
font-size: 18px;
}
#aa:hover{
background: radial-gradient(circle at center,
rgb(10, 12, 12), rgb(36, 36, 36), rgb(210, 7, 173)),100% ;
}
/* body {
display: flex;
height: 100vh;
margin: 0;
} */
.sidebar {
width: 200px;
background-color: #f1f1f1;
padding: 15px;
background-color: rgb(48, 5, 108);
}
.sidebar a {
display: block;
margin-bottom: 10px;
text-decoration: none;
color:#fff;
}
.content {
flex: 1;
padding: 20px;
}
.custom-progress-bar {
background-color: red;
height: 3px;
width: 0;
animation: progress 1s linear forwards;
}
@keyframes progress {
0% {
width: 0;
}
100% {
width: 100%;
}
}