-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
121 lines (103 loc) · 2.17 KB
/
App.css
File metadata and controls
121 lines (103 loc) · 2.17 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
/* List three ways to select html elements in css */
/* Using ID
element type
classes */
/* List three ways to style html elements */
/* Inline
Style tag in header
Link an outside style file.
*/
body {
background-color: #eee;
padding: 0;
margin: 0;
}
header {
background-image: url('https://drive.google.com/uc?id=1ADdMAd8sSM1GxabjRUpJaqliyYQMxixu');
background-size: cover;
background-position: center;
color: #ccc;
display: flex;
/* What does 'display: flex' do?*/
/* Type your answer here */
/* Answers will vary ex: It sets how a flex item will gow and shrink to fit the space available in its container */
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.logo {
width: 100px;
margin: 40px;
border-radius: 50%;
}
.title {
margin: 40px;
padding: 15px;
border: solid #ccc 5px;
border-radius: 15px;
}
.italic {
margin: 40px;
font-size: 24px;
/* px, ___pt__, and __em___ are 3 measurements units in CSS */
/* Answers may vary */
font-style: italic;
text-align: center;
}
.bootcamp {
padding: 20px;
}
.align-right {
text-align: right;
}
.bootcamp p,
li {
margin: 10px;
}
/* #awesome {
display: none;
} */
footer {
display: flex;
justify-content: space-between;
}
#searchBox {
margin: 0 auto;
display: inline-block;
font-size: 16px;
padding: 5px;
border-radius: 5px;
border-color: #dda65f;
}
#searchBox::selection {
border-color: #3a7ddd;
}
#infoBtn,
#searchBtn,
#awesomeBtn {
background-color: #dda65f;
/* add border color to match the background color */
border-color: #dda65f;
color: white;
margin: 0 auto;
display: inline-block;
font-size: 16px;
padding: 5px 15px;
border-radius: 5px;
}
/* Make the mouse curser look like a hand when you hover over the buttons (#infoBtn, #searchBtn, #awesomeBtn) and add backgound and border color of #3a7ddd*/
[id$='Btn']:hover {
background-color: #3a7ddd !important;
border-color: #3a7ddd !important;
cursor: pointer;
}
.socialIcon {
width: 25px;
margin: 0 10px;
}
/* On solution to the css question Main.jsx line: 96 */
.buttons {
display: flex;
flex-direction: row-reverse;
justify-content:space-around;
}