-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
134 lines (105 loc) · 2.86 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
body {
background-color: #6D5676;
font-family: Verdana, Geneva, Tahoma, sans-serif; margin: 0 auto;
}
/**top navigation bar **/
#navigation {
background-color: #68A0A1; color:white;
width: 90%; margin:1% auto; padding:1.5rem 1rem 1rem 1rem;
text-align: right;
font-size: 18px; letter-spacing: 1px;
border-radius:1rem;
}
#navigation li {
display: inline; margin:1rem;
}
/** welcome header **/
.welcome {
color: white; background-color: #7bb957;
margin:1.5%; padding: 0.5rem 0% 0% 0%;
text-align: left; letter-spacing: 1.4px;
font-family: Verdana, Geneva, Tahoma, sans-serif; font-size: 20pt;
margin-bottom: 3rem; border-radius: 2rem;
}
.welcome img {
height:75px; width:75px;
float:right; margin:1rem;
}
.welcomeheader {
padding: 0.1rem 2rem 0rem; margin-bottom: 1rem;
}
.welcome p {
color:#312635; background-color: #ffd664; margin:0%; padding:1rem 1rem 2rem 1rem;
font-size: 14pt; border-radius: 2rem; border-top-left-radius: 1rem; border-top-right-radius: 1rem;
}
/** start of mid page and first row **/
.rowspace {
padding:0 1% 3rem 1%; background-color:#EBF8DD; overflow: hidden;
}
.topic {
text-align: center; background-color: #EBF8DD; padding: 0.5rem 0 0.5rem 0; margin:0.5rem;
font-size: 14pt;
}
.overview, .care, .diet { /** first three sections **/
color:white; background-color: #68A0A1;
width: 29%; float: inline-start; margin: 1% 2% 1% 2%;
padding-bottom: 1.5rem;
text-align: center;
font-size: 18pt;
border-radius: 2rem;
}
.toprow img {
width:75px; height: 75px;
}
/** start of second row **/
.bottomrow {
overflow: hidden;
padding: 0 14% 0 14%;
}
.gallery, .art {
color: white; background-color: #68A0A1;
width: 45%; margin: 1.8%; display:inline-block;
/**padding-left: 0.55rem;**/ /** not sure if hack or not, check later for better solution **/
padding-bottom: 1.5rem;
text-align: center;
font-size:18pt;
border-radius: 2rem;
}
.art {
float:left
}
.gallery {
float:right
}
.bottomrow img {
width: 75px; height: 75px;
}
/** Quote from reggie section **/
.quote {
background-color: #CBE2CE; color: #68A0A1;
text-align: right;
padding:2rem 2rem 2.5rem 2rem;
}
.quote p {
margin: 0.5rem 0 0 0;
}
.gap {
background-color: #EBF8DD; height: 2rem;
}
/** about us **/
.aboutus {
background-color: #7bb957; color:white; width:30%; overflow:hidden; margin: 2rem 35% 2.5rem 35%; padding:1rem 1rem 1.5rem 1rem;
border-radius: 1rem; border:#ffd664 solid 2px;
}
.aboutus h2 {
font-size: 18pt; margin: 0rem 1rem 0rem 1rem;
}
.aboutus p {
margin: 0rem 1rem 1rem 1rem;
}
.aboutus a {
margin:1rem; background-color: #ffd664; color:#6D5676; text-decoration: none; padding:0.3rem; border:1px solid #6D5676; border-radius: 0.5rem;
}
.copyright {
text-align: right; color: white; font-size: 8pt;
}