restore.css 3.2 KB
Newer Older
Motohisa Nakano committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/* CSS Document */
@charset "utf-8";


.sectionrestore {
	width: 420px;
	height:308px;
	border:1px solid #cccccc;
	display: none;
	padding:0;
	margin:0;
	overflow:hidden;
	-webkit-border-radius:10px 10px 10px 10px;
	-moz-border-radius:10px 10px 10px 10px;
	border-radius:10px 10px 10px 10px;
	-webkit-box-shadow: 0px 1px 3px 0px #666;
	-moz-box-shadow: 0px 1px 3px 0px #666;
	box-shadow: 0px 1px 3px 0px #666;
	font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
	z-index: 101;
	background-color: #ffffff;
}

.sectionrestore h1{
25
	margin: 2px 2px 36px 2px;
Motohisa Nakano committed
26 27 28 29 30 31 32
	padding:0;
	height:64px;
	line-height:62px;
	text-align:center;
	font-weight:bold;
	letter-spacing: 2px;
	color:#333;
33 34 35 36
	background-color:#dfdfdf;
	-moz-border-radius:8px 8px 0px 0px;
	-webkit-border-radius:8px 8px 0px 0px;
	border-radius:8px 8px 0px 0px;
Motohisa Nakano committed
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
}

.sectionrestore p{
	width:320px;
	margin:0 50px;
}

.sectionrestore p.message{
	margin-bottom:20px;
	font-size:15px;
	font-weight:bold;
	color:#333;
}

.sectionrestore p.notice{
	line-height:20px;
	font-size:12px;
	color:#333;
}

.sectionrestore .restorebtn {
	width:325px;
	height:25px;
	margin:29px auto 0;
}
62
/*
Motohisa Nakano committed
63 64 65 66 67 68 69 70
.sectionrestore .restorebtn a.ok {
	position:relative;
	margin:0 98px 0 0;
}
.sectionrestore .restorebtn a.cancel {
	position:relative;
	margin:-27px 0 0 135px;
}
71
*/
Motohisa Nakano committed
72
.sectionrestore .restorebtn a {
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
	width:100px;
	height:28px;
	padding-top:8px;
	border:1px #263957 solid;
	
	-pie-background: linear-gradient(top, #89c 0%, #1B2440 97%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.97, #1B2440), color-stop(0.00, #89c));
	background: -webkit-linear-gradient(top, #89c 0%, #1B2440 97%);
	background: -moz-linear-gradient(top, #89c 0%, #1B2440 97%);
	background: -o-linear-gradient(top, #89c 0%, #1B2440 97%);
	background: -ms-linear-gradient(top, #89c 0%, #1B2440 97%);
	background: linear-gradient(to bottom, #89c 0%, #1B2440 97%);
	
	-webkit-border-radius:8px 8px 8px 8px;
	-moz-border-radius:8px 8px 8px 8px;
	border-radius:8px 8px 8px 8px;
	
Motohisa Nakano committed
90 91 92 93 94 95
	display:inline-block;
	color:#ffffff;
	font-size:14px;
	font-weight:bold;
	text-decoration:none;
	text-align:center;
96 97
	
	behavior:url('/abvw/css/PIE.htc');
Motohisa Nakano committed
98 99
}
.sectionrestore .restorebtn a:hover {
100 101 102 103 104 105 106 107 108 109
	-pie-background: linear-gradient(top, #B9C5E5 0%, #303E6C 97%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.97, #303E6C), color-stop(0.00, #B9C5E5));
	background: -webkit-linear-gradient(top, #B9C5E5 0%, #303E6C 97%);
	background: -moz-linear-gradient(top, #B9C5E5 0%, #303E6C 97%);
	background: -o-linear-gradient(top, #B9C5E5 0%, #303E6C 97%);
	background: -ms-linear-gradient(top, #B9C5E5 0%, #303E6C 97%);
	background: linear-gradient(to bottom, #B9C5E5 0%, #303E6C 97%);
	text-decoration:underline;
	
	behavior:url('/abvw/css/PIE.htc');
Motohisa Nakano committed
110
}
111
/*
Motohisa Nakano committed
112 113 114 115
.sectionrestore .restorebtn a:active {
	position:relative;
	top:1px;
}
116 117
*/
/*
Motohisa Nakano committed
118 119 120 121 122 123 124 125 126 127
.sectionrestore .restorebtn a:not(:target) {
    filter: none;
    -ms-filter: none;
    background-image: url(../css/button_back_off.svg);
}

.sectionrestore .restorebtn a:hover:not(:target) {
    filter: none;
    -ms-filter: none;
    background-image: url(../css/button_back_on.svg);
128 129
}
*/