-
Notifications
You must be signed in to change notification settings - Fork 0
/
style2.css
79 lines (73 loc) · 1.28 KB
/
style2.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
.style2 {
position: relative;
text-align: center;
}
.style2.theme1{
--theme-color: #4287FF;
}
.style2 .logo {
position: absolute;
display: block;
top: 33%;
margin-top: -80px;
left: 50%;
margin-left: -55px;
width: 110px;
height: 160px;
background-repeat: no-repeat;
background-size: 100% 100%;
}
.style2 .container {
position: absolute;
width: 100%;
bottom: 0;
}
.container > div{
margin-bottom: 20px;
}
.style2 .version {
font-size: 20px;
font-weight: 600;
color: #333;
text-align: center;
}
.style2 .tips{
margin-top: 2px;
font-size: 14px;
color: #9E9E9E;
text-align: center;
font-weight: normal;
}
.style2 .btn {
box-sizing: border-box;
height: 48px;
line-height: 48px;
border-radius: 24px;
background: var(--theme-color);
text-align: center;
width: 100%;
font-size: 16px;
font-weight: 600;
color: #fff;
vertical-align: -3px;
display: none;
}
.style2 .btn-group {
width: 76%;
margin: 0 auto;
}
.style2 .btn.ios {
display: flex
}
.style2 .btn svg{
position: relative;
left:auto;
margin-right: 10px;
}
.style2 .copyright{
margin-top: 10px;
width: 100%;
text-align: center;
font-size: 12px;
color: #8e8e8e;
}