-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle3.css
More file actions
32 lines (32 loc) · 852 Bytes
/
Copy pathstyle3.css
File metadata and controls
32 lines (32 loc) · 852 Bytes
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
.a{
color: white;
margin: auto;
background-size:cover;
animation: example 5s forwards;
background-image:url(https://i.ytimg.com/vi/SigIbCVMTzU/hq720.jpg?sqp=-oaymwEhCK4FEIIDSFryq4qpAxMIARUAAAAAGAElAADIQj0AgKJD&rs=AOn4CLCiiXqUJ5yw0fxrzePFSd6qqboyVQ);
}
hr{
color: black;
}
.b{
margin: auto;
padding-block-start: 10px;
background: linear-gradient(90deg, rgb(255, 255, 255) 35%, rgb(55, 255, 188) 100%);
width:fit-content;
padding-block-end: 10px;
}
.b1{
color: rgb(90, 239, 189);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.b2{
font-family:Arial, Helvetica, sans-serif;
font-size: 5px;
padding-left: 20px;
padding: 20px;
text-align:justify;
}
@keyframes example{
0%, 100% { opacity: 0; }
100% { opacity: 1; }
}