-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsite.css
More file actions
84 lines (79 loc) · 1.38 KB
/
site.css
File metadata and controls
84 lines (79 loc) · 1.38 KB
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
/* site css
*/
header, footer{
background-color: lightgray;
border: solid 1px black;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
border-radius: 7px;
padding: 5px;
}
footer{
padding: 10px;
border-radius: 7px;
}
body{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 14px;
background-color: darkgreen;
}
#main{
font-family: Arial, sans-serif;
background-color: aqua;
color: brown;
margin: 20px 0;
border: solid 1px black;
padding: 5px;
border-radius: 7px;
}
.bordered-image{
border: solid 1px black;
}
.simple-form{
padding: 2px;
width: 300px;
display: inline-block;
vertical-align: top;
}
#results{
padding: 2px;
width: 600px;
display: inline-block;
vertical-align: top;
}
.result{
color: rgb(240, 126, 126);
border: solid 1px black;
}
.title{
color: black;
font-weight: bold;
}
.simple-form label{
font-weight: bold;
}
.simple-form input [type = select],
.simple-form select
{
width: 150px;
}
.simple-form input[type=submit]{
color: white;
background-color: green;
padding: 3px;
border-radius: 15px;
margin-top: 5px;
}
.container{
width: 989px;
margin: 0 auto;
background-color: white;
}
header nav{
float: right;
}
header nav li{
display: inline;
}
#main a{
color: black;
}