-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
148 lines (122 loc) · 1.99 KB
/
style.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
/*
font info:
family - Helvetica, Arial, sans-serif
line-height - 1.6
colors:
light gray - ##eee
gray - #dddddd
yellow - #ffd24a
orange - #ff8523
blue - #1fabe5
dark blue - #046c97
*/
body{
background-image: url("./img/bg.jpg");
background-repeat: repeat;
}
.main_box{
border: 2px solid #ffd24a;
margin: 10px 10px 30px 80px;
background-color: white;
border-radius: 6px;
box-shadow: 3px 3px 3px #555454;
}
#page_content{
padding: 20px 20px 20px 20px;
}
section a:link {
color:#1fabe5;
}
section a:visited{
color:#1fabe5;
}
header{
background-color: #ff8523;
padding: 20px 0px 40px 30px;
}
header img{
margin-bottom: 20px;
}
nav a{
border: 1px solid white;
padding: 10px 30px 10px 30px;
border-radius: 5px;
text-decoration: none;
color: white;
font-weight: bolder;
}
body {
font-family: Helvetica, Arial, sans-serif;
line-height: 1.6;
}
h2{
color: #1fabe5;
}
h3{
color: #1fabe5;
}
li{
font-weight: bolder;
}
section{
padding-bottom: 40px;
border-bottom: 4px solid #dddddd;
}
table, thead, td{
border-collapse: collapse;
border: 1px solid #046c97;
padding: 10px 10px 10px 10px;
}
table{
width: 100%;
}
thead{
background: #1fabe5;
color: white;
}
table img{
height: 25%;
}
form{
border-radius: 4px;
background-color: #eee;
padding: 20px 20px 20px 20px;
font-weight: bold;
}
.name{
background-color: #ff8523;
color: white;
padding: 25px 0px 25px 0px;
border-radius: 6px;
margin-bottom: 30px;
}
label[for*=name]{
padding-left: 25px;
}
input{
height: 35px;
width: 30%;
}
.breed{
margin-bottom: 30px;
}
textarea{
border: 1px solid #1fabe5;
font-size: inherit;
padding: 10px 10px 10px 10px;
width: 98%;
margin-bottom: 20px;
margin-top: 20px;
}
input[type="submit"]{
background-color: #1fabe5;
color: white;
font: inherit;
text-align: center;
text-transform: uppercase;
padding: 15px 20px 15px 20px;
border-radius: 6px;
width: auto;
height: auto;
border: none;
}