-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
56 lines (55 loc) · 1.19 KB
/
index.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
#nav {
display: flex;
flex-direction: row;
justify-content: flex-end;
}
#nav > .text {
margin: 1vh;
text-decoration: none;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
transform: translate(-10%, 25%);
}
#page {
height: 100%;
width: 100%;
position: fixed;
display: flex;
flex-direction: column;
justify-content: center;
/* align-items: center; */
}
#page > .google-image {
transform: translateY(-50%);
transition: transform, 500ms ease-in-out;
}
#page > .google-image:hover {
transform: translateY(-50%) scale(1.1);
}
#page > .two-box {
margin-top: 2.5rem;
position: relative;
display: flex;
justify-content: center;
gap: 5rem;
}
#page > .two-box > .box {
height: 5vh;
width: max-content;
padding-left: 2rem;
padding-right: 2rem;
padding-top: 0.6rem;
background-color: bisque;
border-radius: 2vh;
text-align: center;
justify-content: center;
cursor: pointer;
transition: transform, 250ms ease-in-out;
text-decoration: none;
color: black;
}
#page > .two-box > .box:hover {
transform: scale(1.1);
}
#page > .two-box > .box:active {
transform: scale(0.98);
}