-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles-backup.css
102 lines (86 loc) · 1.64 KB
/
styles-backup.css
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
* {
box-sizing: border-box;
}
:root {
/* --blue: #224971; */
/* --grey: #e9e9e9; */
--lightgrey: #e7e7e7;
--headerfont: 'Avant Garde', Avant Garde, sans-serif;
--textfont: 'Avant Garde', Avant Garde, sans-serif;
}
h1 {
font-family: var(--headerfont);
}
p, a {
font-family: var(--textfont);
font-size: smaller;
}
header{
padding: 1.5rem;
border-bottom: double black;
}
.header-container,
.title-container div {
display: flex;
align-items: flex-end;
}
.title-container div {
margin: 0;
padding-top: .2rem;
}
.header-container img {
width: 11%;
}
.title-container {
margin-left: 2rem;
}
.title-container img {
width: 5%;
margin-right: .5rem;
align-self: center;
margin:0 .7rem 0 0;
padding:0;
}
.title-container p {
font-family: var(--headerfont);
font-style: italic;
font-size: 1rem;
align-self: center;
margin:0;
padding:0;
}
.header-container h1 {
margin:0;
padding:0;
display: table-cell;
vertical-align: bottom;
}
section {
margin: 0 2rem;
}
.module-container {
padding-top: 1rem;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
grid-gap: 1rem;
}
.module-card {
border: 1px solid var(--lightgrey);
border-radius: 1px;
width: 425px;
height: 320px;
object-fit: cover;
}
.module-card div {
margin: 1rem;
}
.module-card p:first-child {
font-weight: bold;
font-size: 1.2rem;
font-family: var(--headerfont);
}
.card-box-shadow {
box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
position: relative;
bottom: .2rem;
}