-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
130 lines (121 loc) · 2.55 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
@font-face {
font-family: 'Helvetica Now Display Medium';
src: url('DFO0XtNiDsudDxQDCA1bFJP6Xw.otf') format('opentype');
font-weight: 400;
font-style: normal;
}
body{
position: relative;
padding: 0;
margin: 0;
box-sizing: border-box;
width: 100vw;
min-height: 100vh;
background:#000;
color: #fff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: "Helvetica Now Display Medium",sans-serif;
overflow-x: hidden;
transition: all 0.6s ease-in-out;
}
.grid{
visibility: hidden;
position: absolute;
width: 100%;
height: 100%;
background-image: url("./assets/ooorganize.png");
background-repeat: repeat-x;
background-size: contain;
opacity: 0.3;
transition: all 0.4s ease-in-out;
}
.st{
color: #ff4800;
font-size: 24px;
margin-top: 50px;
font-weight: 400;
transition: all 0.6s ease-in-out;
}
.bt{
font-size: 56px;
max-width: 616px;
text-align: center;
color: #f7f7f7;
white-space: pre-wrap;
margin-top: -5px;
font-weight: 400;
}
.bb{
position: relative;
min-width: 120px;
padding: 36px 56px;
background-color: #000;
border: 2px solid rgb(247, 247, 247);
border-radius: 100px;
font-size: 72pt;
margin: 32px 0;
font-weight: 400;
transition: all 0.2s ease-in-out;
}
.bb:hover{
cursor: pointer;
background-color: rgb(247, 247, 247);
color: #000;
border: 2px solid rgb(247, 247, 247);
}
.bb-bg {
display: none;
position: absolute;
top: 0;
left: 0;
margin-top: -16px;
min-width: 120px;
padding: 52px 56px;
font-size: 72pt;
background: rgb(247, 247, 240);
filter: blur(28px);
opacity: 0.4;
z-index: -1;
border-radius: 120px;
}
.bb:hover > .bb-bg {
display: block;
transition: display 2s ease-out 0s;
}
.pr{
font-size: 16px;
line-height: normal;
color: #808080;
max-width: 596px;
text-align: center;
margin-top: 40px;
font-weight: 400;
transition: all 0.6s ease-in-out;
}
@media screen and (max-width: 600px) {
.st{
font-size: 16px;
}
.bt{
font-size: 36px;
}
.pr{
font-size: 12px;
}
.bb{
min-width: 120px;
padding: 10px 24px;
background-color: #000;
border: 1px solid rgb(247, 247, 247);
border-radius: 100px;
font-size: 16px;
margin: 32px 0;
text-align: center;
}
.bb:hover > .bb-bg {
display: none;
}
}