-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles1.css
More file actions
117 lines (95 loc) · 1.76 KB
/
styles1.css
File metadata and controls
117 lines (95 loc) · 1.76 KB
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
/*nav*/
body {
margin: 0px;
padding: 0px;
background-color: white;
}
.top-sec {
background-color: black;
height: 100px;
list-style-type: none;
display: flex;
align-items: center;
justify-content: start;
gap: 5em;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
a {
color: white;
text-decoration: none;
transition: 0.5s ease;
}
a:hover {
color: rgb(99, 76, 201);
}
/*pic*/
.picture {
display: flex;
background-color: rgb(108, 108, 128);
height: 80%;
justify-content: center;
align-items: center;
margin-top: -20px;
gap: 22%;
}
.pic_img {
display: flex;
justify-content: center;
align-items: center;
position: relative;
overflow: hidden;
width: 50%;
height: 100%;
}
.dots {
background-color: blue;
position: absolute;
top: 95%;
}
.img-seb {
width: 75%;
height: 100%;
justify-content: center;
animation: blur;
animation-duration: 1s;
border-radius: 10px;
}
@keyframes blur {
from {opacity: 0.5;}
to {opacity: 1;}
}
.arrowBase {
justify-content: center;
align-items: center;
display: flex;
height: 15%;
width: 3.2%;
transition: all 0.1s ease;
}
.arrowBase:hover{
background-color: rgb(116, 71, 116);
}
.btnLeft {
border-top-right-radius: 10%;
border-bottom-right-radius: 10%;
}
.btnRight {
border-top-left-radius: 10%;
border-bottom-left-radius: 10%;
}
.arrowBase .shape {
border: 5px solid;
border-color: transparent;
border-width: 10px;
border-radius:5px;
height: 1px;
width: 1px;
}
.shape.right {
border-right-color: black;
margin-right: 13px;
}
.shape.left {
border-left-color: black;
margin-left: 13px;
}