-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-style.css
133 lines (121 loc) · 3.09 KB
/
test-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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
body{
height: 120vh;
font-family: objektiv-mk2, sans-serif;
}
.wrapper{
margin: 0 auto 0 auto;
}
h1{
margin: 2% auto 2% auto;
font-size: 48px;
text-align: center;
padding: 0;
}
h2{
font-family: input-mono, monospace;
font-weight: 200;
text-align: center;
margin: 0 auto;
padding: 0;
}
.project-container{
width: 760px;
margin: 0 auto;
/* background-blend-mode: multiply; */
}
.project-image{
/* background-color: aqua; */
height: 220px;
width: 400px;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
opacity: 0.7;
border: 4px solid rgba(255, 255, 255, 0);
transition: ease 600ms;
z-index: 0;
}
.project-image:hover{
opacity: 1;
border: rgb(236, 168, 79) 4px solid;
z-index: 3;
transform: scale(120%);
}
@keyframes animProj1{
0%{transform: translateY(13px);}
100%{transform: translateY(-13px);}
}
@keyframes animProj2{
0%{transform: translateY(-11px);}
100%{transform: translateY(11px);}
}
@keyframes animProj3{
0%{transform: translateY(-13px);}
100%{transform: translateY(13px);}
}
@keyframes animProj4{
0%{transform: translateY(-13px);}
100%{transform: translateY(13px);}
}
@keyframes animProj5{
0%{transform: translateY(-16px);}
100%{transform: translateY(16px);}
}
@keyframes animProj6{
0%{transform: translateY(17px);}
100%{transform: translateY(-17px);}
}
#proj1{
/* background-color: rgb(153, 153, 255); */
position: absolute;
top: 58%;
left: 15%;
animation: animProj1 11s ease-in-out infinite alternate;
background-image: url(./images/home/smartbox.jpg);
}
#proj2{
/* background-color: rgb(153, 255, 162); */
position: absolute;
top: 31%;
left: 20%;
animation: animProj2 7s ease-in-out infinite alternate;
background-image: url(./images/home/prescription.jpg);
}
#proj3{
/* background-color: rgb(255, 153, 212); */
position: absolute;
top: 68%;
left: 38%;
animation: animProj3 13s ease-in-out infinite alternate;
background-image: url(./images/home/polling.jpg);
}
#proj4{
/* background-color: rgb(159, 221, 59); */
position: absolute;
top: 28%;
left: 45%;
animation: animProj4 9s ease-in-out infinite alternate;
background-image: url(./images/home/nava-savhita.jpg);
}
#proj5{
/* background-color: rgb(255, 153, 153); */
position: absolute;
top: 69%;
left: 65%;
animation: animProj5 5s ease-in-out infinite alternate;
background-image: url(./images/home/5e62e5d06f973495ec8741f6_Untitled_18.gif);
}
#proj6{
/* background-color: rgb(255, 153, 153); */
position: absolute;
top: 46%;
right: 20%;
animation: animProj6 7s ease-in-out infinite alternate;
background-image: url(./images/home/prescription.jpg);
}
.superellipse{
margin-top: 500px;
height: 200px;
width: 800px;
background-color: radial-gradient(86.82% 1774.65% at 10.59% 31.03%, rgba(252, 254, 255, 0.2) 0%, rgba(246, 251, 248, 0.2) 100%), radial-gradient(105.55% 2157.47% at 102.37% 100%, #F7F6F4 0%, #FAFAFB 100%);
}