alert.scss
828 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
41
42
43
44
45
46
47
48
49
.alertCommon{
width:100%;
height:100%;
opacity:1;
background-color:#f50;
position:absolute;
.entryInformation{
width:600px;
position:absolute;
top:200px;
left:300px;
text-align:center;
background-color:#fff;
border:1px solid #eee;
border-radius:6px;
padding-left:20px;
padding-right:20px;
z-index:100;
.head{
height:50px;
line-height: 50px;
color:#333;
font-size:18px;
border-bottom:1px solid #eee;
}
.content{
height:114px;
line-height:30px;
font-size:18px;
padding-top:30px;
color:#333;
border-bottom:1px solid #eee;
}
.footer{
height:72px;
button{
width:200px;
height:32px;
line-height:32px;
font-size:16px;
padding:0px;
margin-top:20px;
color:#fff;
background-color:#55aa55;
border-color:#55aa55;
}
}
}
}