forked from hack4impact-calpoly/bootcamp-project-2022
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
58 lines (49 loc) · 1.14 KB
/
index.css
File metadata and controls
58 lines (49 loc) · 1.14 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
/*container - used to align img on about page*/
.container{
background-color: #FF5733;
padding: 10px 10px;
position: relative;
top: 50%;
left: 35%;
align-items: center;
align-content: center;
margin-top: 10px;
border: black;
border-radius: 10px;
}
/*flex box - used for headers (title and navigation) on all files*/
.flex-container{
background-color: #FF5733;
display: flex;
flex-direction: row;
align-items: center;
margin-right: 3;
margin-left: 3;
justify-content: space-between;
padding: 5px;
}
/*flex container for the navigation links (smaller font and in a row!)*/
.flex-container2{
font-size: 15px;
display: flex;
flex-direction: row;
}
/*padding so that there is space between the 'home' and 'about' links*/
.padding{
padding: 5px;
}
/*this class is used by select words (ex- ingredients, instructions) to place emphasis*/
.important{
color: #FF5733;
font: 300px;
}
/*this was not used, as it did not work. I hoped to make the header title larger! */
.essential{
font: 500px;
}
.text{
text-align: center;
}
.image{
align-items: center;
}