This repository was archived by the owner on Oct 26, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathstyle.css
More file actions
192 lines (167 loc) · 3 KB
/
style.css
File metadata and controls
192 lines (167 loc) · 3 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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
body {
font-family: "Roboto", sans-serif;
}
.container {
background-color: #aa8d39;
width: 100%;
height: 2100px;
margin: 50px 50px 0px, 150px;
padding: 5px 0px 5px;
border-color: magenta;
}
.topic {
font-size: 2em;
text-align: center;
color:white;
background-color: #d4b16a;
}
/*the links for the menu*/
.nav {
color: white;
background-color: rgb(197, 145, 40);
margin-bottom: 0px;
}
#navigation {
text-align: center;
position: flexible;
top: 0;
font-size: 25px;
padding: 0px;
margin-bottom: 0px;
}
.link {
color: rgb(77, 13, 52);
text-align: center;
margin: 60px;
}
/*targets the heading child tag*/
.pre > h2 {
text-decoration: underline;
margin: 60px;
}
.profile-image {
width: 150px;
height: 150px;
float:left;
border-radius: 10px;
border: 5px solid rgb(133, 79, 79);
margin: 30px;
height:auto;
}
/*group class code for logos*/
.solo, .codepen, .codeorg, .capgemini {
width: 150px;
height: 150px;
border-radius: 10px;
border: 5px solid rgb(133, 79, 79);
margin-bottom: 10px;
margin-right: 60px;
margin-top: 0px;
max-width: 100%;
height:auto;
float:right;
}
.cyf_logo {
width: 100px;
height:75px;
border-radius: 5px;
border: 5px rgb(34, 24, 24);
margin-bottom: 30px;
margin-right: 110px;
margin-top: 5px;
max-width: 100%;
height:auto;
float: right;
}
/*handles the social media links*/
.social {
padding: 0px;
margin-right: 0px;
position: absolute;
top: 25%;
}
.social li {
list-style-type: none;
padding: 20px;
transition: .6s;
color: white;
position: relative;
}
.social li i {
font-size: 40px;
}
/*allows change of color on hover event*/
.social li:hover {
padding: 20px 40px;
}
/*grouped code for all boxes*/
.prelim, .coursestart, .drop-in, .full{
background-color: #ffe9aa;
box-sizing: border-box;
width: 1000px;
height: 350px;
box-shadow: 5px 10px 5px black;
border-radius: 10px;
text-align: center;
padding: 10px;
margin: 10px 30px 20px 280px;
}
/*targets only the Pre-Bootcamp menu link*/
a[href*="Intro"] {
background-color: rgb(189, 238, 144);
}
/*selects the paragraph only as direct child*/
.pre > p {
margin-top: 60px;
margin-bottom: 10px;
margin-right: 200px;
margin-left: 300px;
text-align: justify;
color: white;
font-size: 20px;
}
/*.link-image{
vertical-align: right;
}*/
h1,
h2 {
text-align: center;
color: rgb(47, 233, 34);
}
h3 {
text-align: center;
color: rgb(16, 23, 48);
font-weight: 1200;
}
ul {
margin: 0px;
text-align: left;
font-size: 22px;
list-style: none;
}
ol {
list-style: none;
font-size: 20px;
}
/*link to all the url on the boxes*/
.weblink{
text-align: justify;
}
/*selects and styles the second on the list*/
.fulldev li:nth-child(2) {
color: rgb(212, 151, 27);
}
/*for the href links*/
a:hover {
color: green;
}
#footer {
background-color: lightpink;
box-sizing: border-box;
width: 700px;
height: 50px;
box-shadow: 5px 10px 5px black;
margin: auto;
text-align: center;
vertical-align: middle;
}