Develop and Download Open Source Software

Browse Subversion Repository

Contents of /trunk/app/assets/stylesheets/message_box.css.scss

Parent Directory Parent Directory | Revision Log Revision Log


Revision 17 - (show annotations) (download)
Sun Apr 27 12:01:59 2014 UTC (10 years, 1 month ago) by opa
File size: 867 byte(s)


1 #message_box{
2 position: fixed;
3 display: none;
4 left: 0;
5 top:0 ;
6 width: 100%;
7 height: 100%;
8 background-color: rgba(black, 0.6);
9
10 table{
11 width: 100%;
12 height: 100%;
13 }
14 td{
15 width: 50%;
16 }
17 .dialog{
18 margin: auto;
19 padding: 4px;
20 min-width: 256px;
21 max-width: 80%;
22 @media screen and (min-width:750px){ // if wide
23 width: 600px;
24 }
25
26 border-radius: 4px;
27 background-image: linear-gradient(-30deg, rgba(208,208,208, 0.95), rgba(white, 0.95));
28 box-shadow: 4px 4px 10px black;
29 text-align: center;
30 color: black;
31 font-family: Arial, Meiryo, sans-serif;
32 white-space: normal;
33 }
34 #message_box_message{
35 padding: 0.6ex 0;
36 min-height: 2em;
37 line-height: 140%;
38 }
39 .button{
40 padding: 1ex 0 0.5ex 0;
41 border-top: 1px solid gray;
42 color: rgb(0, 89, 204);
43 }
44 #message_box_button1{
45 }
46 #message_box_button2{
47 border-left: 1px solid gray;
48 }
49 }

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26