notYetOpened.less
953 Bytes
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
.not_yet_opened{
height: 100vh;
display: flex;
align-items: center;
.box{
text-align: center;
margin: 0 auto;
img{
width: 130px;
height: 130px;
}
.title{
height:40px;
font-size:28px;
font-weight:400;
color:rgba(102,102,102,1);
line-height:40px;
margin-top: 10px;
}
.desc{
width:500px;
font-size:24px;
font-weight:400;
color:rgba(180,180,180,1);
line-height:33px;
margin: 10px 0 30px 0;
}
.copy{
font-size: 26px;
margin: auto;
width:140px;
height:48px;
line-height: 48px;
border-radius:26px;
border:1px solid rgba(97,196,100,1);
font-weight:400;
color:rgba(97,196,100,1);
}
}
}