forked from Issactoto/portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
174 lines (151 loc) · 2.79 KB
/
stylesheet.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
.certImage{
width:55vh
}
@import "react-alice-carousel/lib/alice-carousel.css";
.alice-carousel__prev-btn-item {
display: inline-block;
padding: 5.5px 16px;
background-color: #f1f1f1;
color: black;
border-radius: 50%;
position: absolute;
top: 40%;
font-size: 1.5rem;
cursor: pointer;
left: 50vh;
}
.alice-carousel__next-btn-item {
display: inline-block;
padding: 5.5px 16px;
background-color: #f1f1f1;
color: black;
border-radius: 50%;
position: absolute;
top: 40%;
font-size: 1.5rem;
cursor: pointer;
right:50vh;
}
.carousel {
--current-slide: 0;
/* we set position relative so absolute position works properly for the buttons */
overflow: hidden;
display: inline-block;
/* width: 160px; */
}
.carousel-button:hover {
background-color: rgba(89, 0, 255, 0.5);
}
@media screen and (min-width: 768px) {
.carousel-button {
font-size: 2rem;
}
}
.alice-carousel__dots {
display: none;
}
.Main{
min-height: 80vh;
display: flex;
flex-direction: column;
justify-content: center;
background-color: #697077;
}
.Header{
min-height:10vh;
background-color: #001141;
display:flex;
justify-content: left;
color:white;
text-align: center;
vertical-align: center;
align-items: center;
}
.Header p {
margin-left:5vh;
font-size: 4vh;
}
.Footer{
min-height:10vh;
min-height:10vh;
background-color: #161616;
display:flex;
flex-direction: row;
color:white;
vertical-align: center;
padding: 6vh;
font-size: 3.5vh;
}
h1{
margin-bottom: 3vh;
}
.FooterLeftContainer{
display:flex;
flex-direction: row;
justify-content: left;
vertical-align: middle;
text-align: middle;
align-items: center;
width:50%
}
.FooterRightContainer{
display:flex;
flex-direction:row-reverse;
justify-content: right;
right:0;
vertical-align: middle;
text-align: middle;
align-items: center;
width:50%;
}
.footerCompanieslogo{
width:18vh;
height:7.4vh;
margin: 2vh;
}
.footerContactlogo{
width:7vh;
height:7vh;
margin: 1vh;
}
.mainImage{
width:40vh
}
.buttonsBox{
display: flex;
flex-direction: row;
margin:4vh;
}
.mainContainer{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.headerContainer{
display:flex;
flex-direction: row;
}
.homeLogo{
margin-left: 1.2vh;
width:4.2vh
}
.mainButton{
animation-name : mymove;
animation-iteration-count : infinite;
animation-direction : alternate;
animation-duration : 2s;
background-color: black;
color: white;
font-size: 3vh;
padding: 3vh 3vh;
border-radius: 5px;
border: 1px solid white;
min-width:15vh;
background-color: #001141;
cursor: pointer;
}
@keyframes mymove {
from {transform: translateY(0px);}
to {transform: translateY(20px);}
}