-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
159 lines (139 loc) · 3.21 KB
/
style.css
File metadata and controls
159 lines (139 loc) · 3.21 KB
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
/* Style Sheet for my webpage */
/* Body a grey back ground */
body{
box-sizing: border-box;
/* border: 1px solid black; */
background-image: url(images/kat_background.png);
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande';
padding: 20px;
background-color: white;
}
/* Header */
.header{
box-sizing: border-box;
/* border: 1px solid black; */
padding: 20px;
padding-bottom: 5px;
font-size: 30px;
text-align: left;
/* background-color: white; */
color: black;
}
/* Navigation bar */
/* Nav bar style */
.navbar{
box-sizing: border-box;
/* border: 1px solid black; */
position: center;
text-align: left;
width: auto;
/* background-color: white; */
font-size: 20px;
padding: 20px;
padding-bottom: 5px;
margin-top: 5px;
margin-bottom: 5px;
display: flex;
flex-direction: row;
}
/* Internal links */
.siteLinks {
display: inline;
width: auto;
padding: 20px;
font-size: 20px;
}
/* create two equal columns that float next to each other */
/* left column */
.leftColumn{
box-sizing: border-box;
/* border: 1px solid black; */
/* background-color: white; */
float: left;
width: 35%;
padding: 5px;
margin-top: 10px;
margin-right: 10px;
}
/* right column */
.rightColumn{
box-sizing: border-box;
/* border: 1px solid black; */
/* background-color: white; */
float: right;
width: 65%;
padding: 20px;
padding-top: 5px;
margin-top: 10px;
margin-left: 10px;
}
/* Card for sections */
.card_out {
border-top:20px solid #ccc;
/* box-sizing: border-box; */
background-color: #eee;
padding: 20px;
padding-top: 0px;
margin-bottom: 10px;
opacity: 0.8;
}
/* Card for sections */
.card {
box-sizing: border-box;
/* border: 1px solid #ccc; */
background-color: #eee;
padding-top: 0px;
margin-bottom: 10px;
}
/* flex row - keeps website inline */
.row {
display: flex;
min-height: 100vh;
flex-direction: row;
justify-content: space-evenly;
}
/* a franme for an image */
.imgae_frame {
width: 50%;
height: 200px;
}
img {
width: 50%;
height: 50%;
}
/* footer */
#footer{
box-sizing: border-box;
font-style: bold black;
/* border: 1px solid black; */
padding: 20px;
text-align: center;
/* background-color: white; */
margin-top: 5px;
}
/* code i was looking at from w3schools for making collapsible boxes
need javascript - will update as site develops futher
see w3schools for code - snippet below */
/* Style the button that is used to open and close the collapsible content */
/* .collapsible {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
/* .active, .collapsible:hover {
background-color: #ccc;
}
/* Style the collapsible content. Note: hidden by default */
/* .content {
padding: 0 18px;
display: none;
overflow: hidden;
background-color: #f1f1f1;
} */