-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
56 lines (52 loc) · 1009 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
46
47
48
49
50
51
52
53
54
55
56
body{
background-color: rgb(200, 198, 202);
}
.nav li a:hover{
color:blueviolet;
}
.site-header hidden-xs{
display:flexbox;
gap: 5px;
border: solid violet ;
}
.img-responsives{
border-radius: 40px;
box-shadow: 1px;
box-decoration-break: clone;
}
.sidebar{
background-image: url("back.jpg");
}
.container{
display: inline-block;
height:50px;
text-align: left;
font-style: normal;
font-family: 'Times New Roman', Times, serif;
}
.typed-out{
overflow: hidden;
border-right: .15em solid rgb(200, 198, 202);
white-space: nowrap;
animation:
typing 20s forwards;
font-size: 1.6rem;
width: 0;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
.img-responsive{
display: flex;
border-radius: 5px;
box-shadow: 0px 0px 2px 2px;
background-color: white;
}
.img-responsive:hover{
display: flex;
border-radius: 5px;
box-shadow: 0px 0px 2px 2px;
transform: rotate(-7deg);
background-color: white;
}