blob: 8ca1e6c172fbd7561cd2e191d705c09e58ec1071 (
plain)
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
|
@charset 'UTF-8';
.prompt {
background: $white;
border: 1px solid $light-gray;
margin: 50px auto;
max-width: 90%;
padding: 1em 2em 0;
width: 600px;
.prompt__heading {
display: table;
font-size: em(18px);
line-height: normal;
margin: 1em 0;
table-layout: fixed;
width: 100%;
> div {
display: table-cell;
vertical-align: top;
&:first-child {
width: 70px;
}
}
img {
margin-right: 15px;
}
}
.prompt__allow {
font-size: em(20px);
margin: 1em 0;
}
.prompt__buttons {
border-top: 1px solid $light-gray;
padding: 1.5em 0;
text-align: right;
}
.prompt__error {
display: inline-block;
}
}
|