summaryrefslogtreecommitdiffstats
path: root/askbot/skins/default/templates/embed/askbot_widget.css
blob: 788d2199d19c5f22abd52a87b797d1c01d34a066 (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
#{{variable_name}} {
     visibility: hidden;
     position: absolute;
     left: 0px;
     top: 0px;
     width:100%;
     height:100%;
     text-align:center;
     z-index: 99999;
}

#{{variable_name}} div{
     width:600px;
     {%if widget.include_text_field%}
     {% if editor_type == 'markdown' %}
     height:480px;
     {%else%}
     height:440px;
     {%endif%}
     {%else%}
     height:210px;
     {%endif%}
     margin: 100px auto;
     background-color: #fff;
     border:1px solid #000;
     padding:15px;
     text-align:right;
}

#{{variable_name}} iframe{
     width:600px;
     {% if editor_type == 'markdown' %}
     height:480px;
     {%else%}
     height:440px;
     {%endif%}
}