Newer Older
147 lines | 2.146kb
add files
Yuki Kimoto authored on 2014-03-26
1
/*
2
Copyright (c) 2009, Yahoo! Inc. All rights reserved.
3
Code licensed under the BSD License:
4
http://developer.yahoo.net/yui/license.txt
5
version: 3.0.0
6
build: 1549
7
*/
8
html{
9
    color:#000;background:#FFF;
10
}
11
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
12
pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{
13
    margin:0;padding:0;
14
}
15
table{
16
    border-collapse:collapse;border-spacing:0;
17
}
18
fieldset,img{ border:0; }
19
address,caption,cite,code,dfn,em,strong,th,var{
20
    font-style:normal;font-weight:normal;
21
}
22
li { list-style:none; } caption,th{ text-align:left; }
23
h1,h2,h3,h4,h5,h6{
24
    font-size:100%;font-weight:normal;
25
}
26
q:before,q:after{ content:''; }
27
abbr,acronym{ border:0;font-variant:normal; }
28
sup{ vertical-align:text-top; }
29
sub{ vertical-align:text-bottom; }
30
input,textarea,select{ font-family:inherit;font-size:inherit;font-weight:inherit; }
31
input,textarea,select{ *font-size:100%; }
32
legend{ color:#000; }
33

            
34

            
35
# レイアウト(サイドバー固定)
36
* {
37
 margin:0;
38
 padding:0;
39
}
40

            
41

            
42
#boxA {
improve design
Yuki Kimoto authored on 2014-03-27
43
  border-bottom:1px solid #AAAAAA;
44
  padding-bottom:10px;
45
  margin-bottom:10px;
add files
Yuki Kimoto authored on 2014-03-26
46
}
47

            
48
#boxC {
49
}
50

            
51
#boxD {
52
}
53

            
54

            
55
body {
56
 text-align:center;
57
}
58

            
59
#container {
60
 width:96%;
61
 margin-left:auto;
62
 margin-right:auto;
63
 text-align:left;
64
}
65

            
66
#boxB {
67
 width:250px;
68
 float:left;
69
 margin-right:-250px;
70
 position:relative;
71
 z-index:2;
improve design
Yuki Kimoto authored on 2014-03-27
72
 font-size:15px;
73
 line-height:1.3em;
74
}
75

            
76
#boxB a {
77
  color:blue;
78
  text-decoration:none;
79
}
80
#boxB a:hover {
81
  color:blue;
82
}
83
#boxB a:visited {
84
  color:blue;
add files
Yuki Kimoto authored on 2014-03-26
85
}
86

            
87
#boxB p {
88
 position:relative;
89
 z-index:2;
90
}
91

            
improve design
Yuki Kimoto authored on 2014-03-27
92
#boxC p, #boxC h3, #boxC h2 {
add files
Yuki Kimoto authored on 2014-03-26
93
 margin-left:250px;
94
}
95

            
improve design
Yuki Kimoto authored on 2014-03-27
96
#boxC .para {
97
  margin-left:270px;
98
  text-indent:1em;
99
  margin-bottom:10px;
100
}
101

            
add files
Yuki Kimoto authored on 2014-03-26
102

            
103
#boxC {
104
 width:100%;
105
 float:left;
106
 position:relative;
107
 z-index:1;
108
}
109

            
110
#boxD {
111
 width:100%;
112
 clear:left;
improve design
Yuki Kimoto authored on 2014-03-27
113
 text-align:center;
114
 padding-top:10px;
add files
Yuki Kimoto authored on 2014-03-26
115
}
116

            
117

            
118
h1 {
119
  font-weight:bold;
120
  font-size:20px;
121
}
improve design
Yuki Kimoto authored on 2014-03-27
122

            
123
h2 {
124
  font-weight:bold;
125
  margin-bottom:10px;
126
  text-align:center;
127
  font-size:20px;
128
}
129

            
130
.chapter h3 {
131
  font-size:17px;
132
  font-weight:bold;
133
  margin-bottom:10px;
134
}
135

            
136
em {
137
  font-size:14px;
138
  color:#008B8B;
139
  padding-right:2px;
140
  
141
}
142

            
143
.chapter {
144
  font-size:18px;
145
  line-height:1.3em;
146
  color:#222222;
147
}