-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
95 lines (95 loc) · 1.5 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
h1{
font-size: 80px;
text-align: center;
color: #ED3842;
font-family: 'Roboto Mono', monospace;
margin: 20px;
}
img{
border-radius: 50%;
border: 10px solid white;
height: 250px;
width: 250px;
margin: 20px;
}
img: hover{
color: black;
}
.wholeBack{
background-color: #F6EEE4;
}
.oneRow{
display: flex;
justify-content: space-between;
align-content: center;
}
.secRow{
display: flex;
justify-content: space-between;
align-content: center;
}
.threeRow{
display: flex;
justify-content: space-between;
align-content: center;
}
.fourRow{
display: flex;
justify-content: space-between;
align-content: center;
}
.fiveRow{
display: flex;
justify-content: space-between;
align-content: center;
}
.gif{
position: fixed;
bottom: 0;
z-index: 10;
animation: drive 40s infinite;
}
@keyframes drive {
0% {
left: -25%;
}
100% {
left: 200%;
}
/* Finish changes by here */
20% {
transform: translate(200px, 0);
}
}
@media screen and (max-width: 500px){
.oneRow{
display: flex;
flex-direction: column;
align-items: center;
}
.secRow{
display: flex;
flex-direction: column;
align-items: center;
}
.threeRow{
display: flex;
flex-direction: column;
align-items: center;
}
.fourRow{
display: flex;
flex-direction: column;
align-items: center;
}
.fiveRow{
display: flex;
flex-direction: column;
align-items: center;
}
}