-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
45 lines (40 loc) · 871 Bytes
/
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
.gradient-background {
background: linear-gradient(300deg, #08baf5f7, rgb(79, 125, 233), #180bc7);
background-size: 180% 180%;
animation: gradient-animation 18s ease infinite;
}
@keyframes gradient-animation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
#header{
color: white;
}
#pratyush,#web-dev{
color: rgb(11, 101, 218);
}
#content-area>.row{
width: 90%;
display: inline-block;
}
#content-area #image>img{
display: flex;
justify-content: center;
}
#details p{
font-family: 'Caveat', cursive;
font-family: 'Dancing Script', cursive;
font-family: 'Libre Baskerville', serif;
font-family: 'Roboto', sans-serif;
font-family: 'Rosarivo', cursive;
text-shadow: black;
font-weight: bold;
font-size: 15pxpx;
}