-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask-list.css
87 lines (71 loc) · 1.25 KB
/
task-list.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
/* 全体 */
/* 入力要素をまとめて初期化 */
button, input, select, textarea {
padding: 3px;
border: 2px solid #888;
font-family : inherit;
font-size : 100%;
}
select {
color: black;
}
option {
color: black;
}
button{
border-radius: 4px;
color: #fff;
font-weight: bold;
}
button:hover {
cursor: pointer;
opacity: 0.8;
}
body {
width: 800px;
margin: 0 auto;
background-color: #ded;
font-family : sans-serif;
}
h1 {
text-align: center;
}
/* */
/* inputarea */
/* */
.inputarea {
width: 500px;
margin: 0 auto;
}
/* row class */
.inputarea .row {
margin: 10px 0;
}
/* button */
.inputarea button {
padding: 3px 20px;
background-color: #44f;
font-size:1.2em;
}
/* タイトルと概要 */
.inputarea #tasktitle, #taskdetail {
width: 500px;
}
/* */
/* tasklistarea */
/* */
/* table */
.tasklistarea table {
width: 100%;
}
/* th */
.tasklistarea th {
background-color: #277;
color: #fff;
}
/* button */
.tasklistarea button {
display: block;
margin: 0 auto;
background-color: #444;
}