-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart.css
46 lines (42 loc) · 856 Bytes
/
start.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
.logo_group{
cursor: default;
position: absolute;
left: calc(50% - 242px);
top: 30%;
display: flex;
align-items: center;
justify-content: center;
gap: 5%;
font-size: 128px;
}
#logo{
font-size: calc(128px * 0.7);
}
#get_started {
position: absolute;
top: calc(50% + 209px);
left: calc(50% - 108px);
font-size: 40px;
text-align: center;
display: inline-block;
width: 250px;
height: 58px;
cursor: pointer;
border: none;
background-color: transparent;
}
#get_started:hover{
transform: scale(1.1);
transition: 0.2s linear;
}
.frame-parent {
position: absolute;
background-color: #dbdbdb;
width: 100%;
height: 100%;
overflow: hidden;
text-align: left;
font-size: 128px;
color: var(--color-black);
font-family: var(--font-jost);
}