-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
113 lines (87 loc) · 2.27 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
:root {
/* --color1: #FA9F42; */
--color1: black;
--color2: #721817;
/* --color3: #2B4162; */
--color3: white;
--highlight0: #FF000088;
--highlight1: #FFA50088;
--highlight2: #FFFF0088;
--highlight3: #00800088;
--highlight4: #0000FF88;
--highlight5: #4B008288;
}
@font-face {
font-family: 'Inter';
src: url('font/Inter/Inter-Black.woff') format('woff'),
url('font/Inter/Inter-ExtraLight.woff') format('woff'),
url('font/Inter/Inter-Regular.woff') format('woff'),
url('font/Inter/Inter-Bold.woff') format('woff'),
url('font/Inter/Inter-Light.woff') format('woff'),
url('font/Inter/Inter-SemiBold.woff') format('woff'),
url('font/Inter/Inter-ExtraBold.woff') format('woff'),
url('font/Inter/Inter-Medium.woff') format('woff'),
url('font/Inter/Inter-Thin.woff') format('woff');
}
@font-face {
font-family: 'InterMedium';
src: url('font/Inter/Inter-SemiBold.woff') format('woff');
}
a {
text-decoration: unset;
color: unset;
}
body{
font-family: 'Inter';
color:var(--color1);
background-color: var(--color3);
}
#verse{
font-family: 'InterMedium';
user-select: text;
-webkit-user-select: text;
}
.inner-body {
margin: auto;
width: 35%;
padding-top:20%;
}
#date{
font-weight:900;
font-size:20px;
color:var(--color1)
}
.highlight-button{
width: 25px;
aspect-ratio: 1;
border-radius: 100px;
}
.highlight-ui{
transition: opacity 0.5s ease-in-out;
}
.highlight-0 {background-color: var(--highlight0);}
.highlight-1 {background-color: var(--highlight1);}
.highlight-2 {background-color: var(--highlight2);}
.highlight-3 {background-color: var(--highlight3);}
.highlight-4 {background-color: var(--highlight4);}
.highlight-5 {background-color: var(--highlight5);}
#highlight0{background-color: var(--highlight0);}
#highlight1{background-color: var(--highlight1);}
#highlight2{background-color: var(--highlight2);}
#highlight3{background-color: var(--highlight3);}
#highlight4{background-color: var(--highlight4);}
#highlight5{background-color: var(--highlight5);}
.top-container{
display:grid;
grid-template-columns: 30% auto;
}
.speaker{
width: 80%;
margin:auto;
object-fit: cover;
object-position: top;
border-radius: 100px;
aspect-ratio: 1;
}
/* .highlight-container{
} */