-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
145 lines (145 loc) · 2.18 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/**
*
* @Name : SubscribeDialog
* @Version : 1.0
* @Programmer : Max
* @Date : 2018-8-19
* @Released under : https://github.com/BaseMax/SubscribeDialog/blob/master/LICENSE
* @Repository : https://github.com/BaseMax/SubscribeDialog
*
**/
*
{
padding: 0px;
margin: 0px;
}
body
{
background-color: #fafafa;
background-image: url('_bg.png');
background-repeat: repeat;
}
#dialog-close
{
cursor: pointer;
position: fixed;
top: 50px;
right: 50px;
background-color: white;
border-radius: 18px;
box-shadow: 0px 0px 20px rgb(223, 223, 223);
padding: 10px;
}
#logo
{
width: 90px;
height: 80px;
background-image: url('_logo.png');
margin-top: -40px;
position: absolute;
left: calc(100% / 2 - 45px);
}
#icon-verify
{
width: 17px;
height: 19px;
background-image: url('_verify.png');
}
#icon-close
{
width: 15px;
height: 14px;
background-image: url('_close.png');
display: inline-block;
}
#icon-success
{
width: 30px;
height: 31px;
background-image: url('_success.png');
}
#icon-email
{
width: 30px;
height: 20px;
background-image: url('_email.png');
display: inline-block;
float: left;
margin: 15px;
}
#dialog
{
margin: auto;
width: 550px;
height: 397px;
border-radius: 35px;
background-color: white;
box-shadow: 0px 0px 20px rgb(223, 223, 223);
margin-top: 12%;
margin-bottom: 12%;
}
#dialog form input
{
border: 0px;
height: 50px;
float: right;
width: calc(100% - 80px);
padding-left: 10px;
padding-right: 10px;
background-color: transparent;
}
#dialog form button
{
cursor: pointer;
width: 100%;
height: 71px;
border: 0px;
border-bottom-left-radius: 18px;
border-bottom-right-radius: 18px;
background-color: #34A5F4;
color: white;
font-weight: bold;
}
#dialog form button #icon-success
{
vertical-align: middle;
display: inline-block;
}
#editbox
{
width: 80%;
height: 50px;
border-radius: 4px;
border: 2px solid #dddddd;
}
#dialog h2
{
font-size: 25px;
}
#dialog h3
{
font-size: 14px;
}
#text
{
margin: auto;
text-align: center;
padding: 15px;
margin-bottom: 30px;
left: 10%;
right: 10%;
position: relative;
}
#text #icon-verify
{
float: left;
}
#text p
{
padding-top: 3px;
padding-left: 5px;
vertical-align: middle;
font-size: 12px;
float: left;
color: #aaaaaa;
}