-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-specific.css
More file actions
99 lines (85 loc) · 1.44 KB
/
index-specific.css
File metadata and controls
99 lines (85 loc) · 1.44 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
/*Page Layout CSS*/
main {
display: flex;
flex-direction: column;
justify-content: center;
}
.page-navigation {
background-color: #76b39d;
border-radius: 20px;
text-align: centre;
padding: 2%;
display: flex;
flex-direction: column;
position: sticky;
top: 8rem;
}
.page-navigation ul {
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
}
.page-navigation li {
width: 25%;
line-height: 1.5rem;
}
.container {
display: flex;
flex-direction: column;
padding: 1rem;
border: 2px #702283 solid;
border-radius: 1rem;
background-color: white;
text-align: center;
max-width: 100%;
}
/*Text formatting classes*/
.page-navigation p {
font-weight: bold;
font-size: 1rem;
text-align: center;
}
.week-title {
font-size: 2rem;
font-weight: bold;
padding-bottom: 1rem;
color: purple;
}
details > p {
font-size: 0.75rem;
font-family: "Kode Mono", monospace;
}
/*Project block formatting*/
.inline_blocks {
display: flex;
flex-direction: column;
justify-content: center;
}
/*Person formatting*/
.person {
margin: 0 1rem;
}
/*Media*/
.screenshots {
display: flex;
flex-direction: column;
max-width: 100%;
}
/*Responsive Site Please*/
@media only screen and (min-width: 700px) {
.inline_blocks {
flex-direction: row;
flex-wrap: wrap;
}
.project {
width: 40%;
margin: 1rem 0;
}
}
/*JavaScript Classes*/
.hide {
display: none;
}
h4:hover {
cursor: pointer;
}