-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplease.css
168 lines (132 loc) · 2.85 KB
/
please.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/* Below is in example of a "margin" and "padding" reset for the entire page.
*{
margin: 0;
padding: 0;
}
*/
a {
text-decoration: none;
color: #000;
}
a:hover {
color: red;
}
a:active {
color: green;
}
/* a:visited {
color: black;
}*/
body {
background-color: tan;
color: #555555;
font-family: arial, helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
/* Same as above */
font: normal 12px arial, helvetica, sans-serif;
line-height: 1.6em;
margin: 0;
}
.container {
width: 80%; margin: auto;
}
.topnav {
background-color: #0085AD;
overflow: hidden;
box-shadow: 2px 2px 5px;
}
/* Style the links inside the navigation bar */
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 20px 16px;
text-decoration: none;
font-size: 17px;
}
/* Change the color of links on hover */
.topnav a:hover {
background-color: #ddd;
color: #16C4FA;
}
/* Add a color to the active/current link */
.topnav a.active {
background-color: #0085AD;
color: #ddd;
}
.box-1 {
background-color: #333;
color: #fff;
border-right: 5px #0085AD solid;
border-left: 5px #0085AD solid;
border-top: 5px #0085AD solid;
border-bottom: 5px #0085AD solid;
/* Same as above */
border: 5px #0085AD solid;
/* Below are ways to edit the border. There are many more ways. */
border-width: 3px;
border-bottom-width: 10px;
border-top-style: dotted;
/* Back on track */
border: 5px #0085AD solid;
padding-top: 20px;
padding-bottom: 20px;
padding-right: 20px;
padding-left: 20px;
/* Same as above */
padding: 20px;
margin-top: 20px;
/* Same as above */
margin: 20px 0px;
}
.box-1 h1 {
font-family: Tahoma;
font-weight:800;
font-style: italic;
text-decoration: underline;
text-transform: uppercase;
letter-spacing: 0.2em;
word-spacing: 1em;
}
.box-2 {
border: 3px dotted #ccc;
padding: 20px;
margin: 20px 0;
}
.categories{
border: 1px #ccc solid;
padding: 10px;
border-radius: 15px;
}
.categories h2{
text-align: center;
}
.categories ul{
padding-left: 1em;
list-style: none;
}
.categories li{
padding-bottom: 6px;
border-bottom: dotted 1px #333;
list-style-image: url('../forme/cupcake_downsize.png')
}
.my-form {
padding: 20px;
}
.my-form .form-group {
padding-bottom: 15px;
}
.my-form label {
display: block;
}
.my-form input[type="text"], .my-form textarea {
padding: 8px;
width: 100%
}
.button {
background-color: #333;
color: #fff;
padding: 10px 15px;
border: none;
}