delete_shiori.css 3 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";


.sectionDeleteConfirm {
	width:420px;
	height:249px;
	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;
	background-color: #ffffff;
	z-index: 101;
}

.sectionDeleteConfirm h1{
25
	margin:2px 2px 38px 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
	background-color:#dfdfdf;
Motohisa Nakano committed
34
	border-radius: 10px 10px 0px 0px;
35 36
	
	font-size: large;
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
}

.sectionDeleteConfirm p{
	text-align:center;
}

.sectionDeleteConfirm p.message{
	font-size:15px;
	font-weight:bold;
	color:#333;
}

.sectionDeleteConfirm .deletebtn {
	width:325px;
	height:25px;
	margin:49px auto 0;
}
.sectionDeleteConfirm .deletebtn a.ok {
	position:relative;
	margin:0 98px 0 0;
	cursor: pointer;
}
.sectionDeleteConfirm .deletebtn a.cancel {
60 61
	
	margin:-35px 0 0 0;
Motohisa Nakano committed
62 63
	cursor: pointer;
}
Motohisa Nakano committed
64

Motohisa Nakano committed
65

Motohisa Nakano committed
66 67 68 69 70 71
.sectionDeleteConfirm .deletebtn a.cancel_audio {
	position:relative;
	margin:-27px 60px 0 135px;
	cursor: pointer;
}

Motohisa Nakano committed
72 73 74
.sectionDeleteConfirm .deletebtn a {
	width:85px;
	height:21px;
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
	padding:6px;
	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
}
.sectionDeleteConfirm .deletebtn a:hover {
100 101 102 103 104 105 106 107 108
	-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;
	cursor: pointer;
Motohisa Nakano committed
109 110 111 112 113
}
.sectionDeleteConfirm .deletebtn a:active {
	position:relative;
	top:1px;
}
114 115

/*
Motohisa Nakano committed
116 117 118
.sectionDeleteConfirm .deletebtn a:not(:target) {
    filter: none;
    -ms-filter: none;
119 120
}
*/