blob: 0105bbf7f5682f35ff9d00282b5bc278492b8a46 (
plain)
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
|
.submit {
position: absolute;
bottom: 100px;
right: 150px;
background: transparent;
border: none;
border-radius: 50%;
transition: 0.2s all;
cursor: pointer;
}
.submit:active {
transform: scale(0.98);
box-shadow: 3px 2px 22px 1px var(--color-shadow);
}
.submit__image {
height: 75px;
width: 75px;
}
.submit__content {
display:flex;
justify-content: center;
align-items: center;
}
|