-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
119 lines (117 loc) · 1.99 KB
/
main.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
/* the styles for the HTML elements */
html {
background-color: rgb(192, 192, 192);
background: url(./images/backG.jpg) center center fixed;
}
body {
font-family: Arial, Helvetica, sans-serif;
width: 760px;
margin: 0 auto;
padding: 0 2em;
background-color: white;
border: 1px solid black;
}
header {
border-bottom: 2px solid black;
padding: .5em 0;
}
header h1 {
color: black;
}
main {
}
aside {
float: left;
width: 150px;
}
section {
float: left;
width: 500px;
}
footer {
clear: both;
border-top: 2px solid black;
}
footer p {
text-align: right;
font-size: 80%;
}
h1 {
font-size: 150%;
margin: .5em 0;
}
h2 {
font-size: 120%;
margin: .25em 0 .5em;
}
h1, h2 {
color: rgb(208, 133, 4);
}
ul {
list-style-type: none;
margin: 0;
padding-left: 0;
padding-bottom: 1em;
}
li {
padding-bottom: 0.5em;
}
a {
color: rgb(41, 64, 124);
font-weight: bold;
}
a:hover {
color: rgb(208, 133, 4);
}
br {
clear: left;
}
table {
border: 1px solid black;
border-collapse: collapse;
margin-bottom: 1em;
}
td, th {
border: 1px dashed black;
padding: .2em .5em .2em .5em;
text-align: left;
}
form {
}
/* the styles for classes */
.right {
text-align: right;
}
.first_paragraph {
margin-top: 0;
}
.last_paragraph {
margin-bottom: 2em;
}
/* the styles for the div tags that divide the page into sections */
#left_column {
float: left;
width: 150px;
text-align: center;
}
#right_column {
float: left;
padding-left: 1em;
padding-bottom: 2em;
}
/* Additional styles for the Product Manager application */
#add_product_form {
margin: .5em 0;
}
#add_product_form label {
width: 6em;
padding-right: 1em;
padding-bottom: .5em;
float: left;
}
#add_product_form input {
float: left;
}
#add_product_form input[text] {
width: 15em;
}