-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
96 lines (90 loc) · 1.77 KB
/
style.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
*{
box-sizing: border-box;
padding: 0;
margin: 0;
}
.body{
font-family: 'Inter', sans-serif;
}
.one,.three{
background-color: #140D91;
height: 100vh;
width: 100%;
}
.one{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.one p{
font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-size: 40px;
line-height: 48px;
color: #FFFFFF;
padding-bottom: 107px;
}
.two{
background-color: #140D91;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh auto;
width: 100%;
}
.trigger{
background-color: #0E74E8;
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
max-width: 100vw;
width: 798px;
height: 223px;
margin-top:112px;
opacity: 0;
}
.trigger p{
font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-size: 64px;
line-height: 77px;
padding-right: 55px;
color: #FFFFFF;
}
/* .yazi_1{
font-weight: bold;
font-size: 16px;
line-height: 24px;
cursor: pointer;
user-select: none;
padding: 12px 16px;
color: rgb(255, 255, 255);
background-color: #0E74E8;
display: flex;
justify-content: center;
opacity: 0;
} */
.trigger:hover{
transition: all 0.2s ease-in-out 0s;
background-color: black;
}
/*
@media (max-width: 768px) {
.trigger{
background-color: #0E74E8;
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
max-width: 500px;
width: 500px;
height: 223px;
margin-top:112px;
opacity: 0;
}
} */