-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbackup1.css
118 lines (96 loc) · 1.71 KB
/
backup1.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
body{
font: 15px/1.5 Arial, Helvetica, sans-serif;
background-color: lightgray;
margin: 0;
padding: 0;
}
.container{
width: 80%;
margin: auto;
overflow: hidden;
}
header{
background-color: #35424a;
border-bottom: darkorange 3px solid;
min-height: 100px;
}
#branding{
padding-top: 5px;
float: left;
color: white;
}
.highlight{
color: darkorange;
}
nav{
padding-top: 25px;
float: right;
}
nav ul li{
display: inline;
padding: 0 20px 0 20px;
}
nav ul li a{
text-decoration: none;
color: white;
}
.current a{
color: darkorange;
font-weight: bold;
}
nav ul li a:hover{
color: lightcoral;
}
nav ul li a:active{
color: darkorange;
}
#showcase{
background: lightblue;
text-align: center;
}
#showcase h1{
font-size: 400%;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
#showcase p{
font-size: 200%;
}
#newletter{
background: darkorange;
}
#newletter h1{
float: left;
padding: 10px;
}
#newletter form{
float: right;
padding-top: 18px;
}
#newletter form input{
border: none;
height: 35px;
padding: 5px;
width: 200px;
}
.button_1{
border: none;
height: 45px;
width: 100px;
padding: 5px;
color: white;
background-color: darkslategray;
}
.button_1:hover{
background-color: rgb(69, 117, 117);
}
#idunno{
padding: 14px 0 14px 0;
font-size: 20px;
text-align: center;
}
footer{
text-align: center;
background-color: darkslategray;
color: white;
padding: 20px
}