mirror of https://github.com/perkeep/perkeep.git
50 lines
1.1 KiB
CSS
50 lines
1.1 KiB
CSS
/*
|
|
Copyright 2014 The Perkeep Authors
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
@import (less) "prefix-free.css";
|
|
|
|
|
|
.cam-dialog-mask {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 2;
|
|
background: rgba(200,200,200,0.85);
|
|
}
|
|
|
|
.cam-dialog {
|
|
position: fixed;
|
|
padding: 0 2em;
|
|
border: solid #E56A5E;
|
|
background: #eee;
|
|
color: #444;
|
|
z-index: 3;
|
|
box-shadow: 0 0 1em 0.2em rgba(0, 0, 0, 0.4);
|
|
font-family: 'Open Sans', sans-serif;
|
|
font-size: 24px;
|
|
text-align: center;
|
|
}
|
|
|
|
.cam-dialog .cam-dialog-close {
|
|
position: absolute;
|
|
right: 14px;
|
|
top: 14px;
|
|
color: #555;
|
|
cursor: pointer;
|
|
}
|