-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (54 loc) · 827 Bytes
/
style.css
File metadata and controls
56 lines (54 loc) · 827 Bytes
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
/*CSS reset settings here*/
*{
margin: 0px;
padding: 0px;
}
body{
font-family: Arial,Helvetica,sans-serif;
}
#container{
margin: 0 auto;
width: 1000px;
text-align: left;
}
ul{
width: 100px;
display: inline-block;
vertical-align: top;
}
li{
display: block;
text-align: right;
margin-top: 10px;
}
#name{
width: 350px;
display: inline-block;
vertical-align: top;
margin-top: 8px;
}
label{
display: block;
}
input, textarea{
font-size: 1em;
display: block;
margin-bottom: 4px;
}
input[type="text"]{
width: 200px;
height: 20px;
}
#card_list{
width: 500px;
height: auto;
display: inline-block;
margin-top: -50px;
}
.card{
width: 400px;
height: 200px;
border: 1px solid black;
margin: 25px;
padding: 25px;
}