blob: 35d3a95e362341a32627f5c10bd3358204b05b44 (
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
|
.oauth-prompt {
background: #fff;
border: 1px solid #ddd;
padding: 1em 2em 0;
margin: 50px auto;
max-width: 90%;
width: 600px;
.prompt__heading {
font-size: em(20px);
line-height: normal;
margin: 1em 0;
display: table;
width: 100%;
> div {
display: table-cell;
vertical-align: top;
}
img {
margin-right: 15px;
}
}
.prompt__allow {
margin: 1em 0;
font-size: em(24px);
}
.prompt__buttons {
text-align: right;
border-top: 1px solid #ddd;
padding: 1.5em 0;
}
}
|