blob: 4dffa1803634e98109de6aec0e9df28d30b2343d (
plain)
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
|
p {
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
h1 {
text-align: center;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
h2 {
font-family:'Times New Roman', Times, serif;
}
button{
background-color: #D87620;
color: white;
padding : 15px 25px;
cursor: pointer;
}
#container{
width:100%;
}
#left{
float:left;width:100px;
}
#right{
float:right;width:175px;
}
#center{
margin:0 auto;width:100px;
}
|