-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
146 lines (125 loc) · 3.09 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
html {
font-size: 62.5%;
font-family: Verdana, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
html,body {
height: 100%;
}
body {
background : url(gazou/kabe.jpg) fixed ;
font-size: 16px; font-size: 1.6rem;
line-height : 20px ; line-height : 2.0rem ;
margin: 0px;
padding: 0px;
}
a { text-decoration : none ;}
a:hover { text-decoration : underline ;}
table {
border : #000000 solid 1px ;
border-spacing: 0px;
border-radius: 3px;
}
th,td {
border : none;
background-color: #FFFFFF;
padding : 5px; padding : 0.5rem ;
}
th {
font-weight: normal;
text-align: left;
}
/* -----------------------
左上角丸 最初の行の最初のセル
----------------------- */
tr:first-child th:first-child,
tr:first-child td:first-child {
border-radius: 3px 0 0 0;
}
/* -----------------------
右上角丸 最初の行の最後のセル
----------------------- */
tr:first-child th:last-child,
tr:first-child td:last-child {
border-radius: 0 3px 0 0;
}
/* -----------------------
左下角丸 最後の行の最初のセル
----------------------- */
tr:last-child th:first-child,
tr:last-child td:first-child {
border-radius: 0 0 0 3px;
}
/* -----------------------
右下角丸 最後の行の最後のセル
----------------------- */
tr:last-child th:last-child,
tr:last-child td:last-child {
border-radius: 0 0 3px 0;
}
/* --------------------------------------
左右上各丸 最初の行にセルが1つしかない時用
----------------------------------------- */
tr:first-child th:only-child,
tr:first-child td:only-child{
border-radius: 3px 3px 0 0;
}
/* --------------------------------------
左右上各丸 最後の行にセルが1つしかない時用
----------------------------------------- */
tr:last-child td:only-child{
border-radius: 0 0 3px 3px;
}
/* ここまでテーブル関係(全般) */
.container {
width : 80%;
margin : 30px auto;
}
.alert {
color : #FF0000 ;
font-weight : bold;
}
.rankS {
color : #FFB700 ;
font-weight : bold ;
font-size: 24px; font-size: 2.4rem;
line-height : 28px ; line-height : 2.8rem;
}
.rankA {
color : #00CC00 ;
font-weight : bold ;
font-size: 24px; font-size: 2.4rem;
line-height : 28px ; line-height : 2.8rem;
}
.rankB {
color : #0000FF ;
font-weight : bold ;
font-size: 24px; font-size: 2.4rem;
line-height : 28px ; line-height : 2.8rem;
}
.rankC {
color : #FF00FF ;
font-weight : bold ;
font-size: 24px; font-size: 2.4rem;
line-height : 28px ; line-height : 2.8rem;
}
.rankD {
color : #FF0000 ;
font-weight : bold ;
font-size: 24px; font-size: 2.4rem;
line-height : 28px ; line-height : 2.8rem;
}
.rankE {
color : #999999 ;
font-weight : bold ;
font-size: 24px; font-size: 2.4rem;
line-height : 28px ; line-height : 2.8rem;
}
.header1 {
background-color: rgb(46, 204, 113);
text-align: center;
font-weight: bold;
}
.header2 {
background-color: rgb(241, 196, 15);
text-align: center;
}