-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
81 lines (81 loc) · 1.81 KB
/
stylesheet.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
html {
scroll-behavior: smooth;
}
body {
padding: 0;
margin: 0;
}
h1, h2, h3, p, a {
font-family: 'Bitter', serif;
}
.articleContainer {
align-items: center;
background-color: #D3D3D3;
display: flex;
flex-direction: column;
}
.article {
background-color: #FFFFFF;
border-radius: 20px;
display: flex;
flex-direction: column;
align-content: flex-start;
justify-content: space-between;
padding: 20px;
margin: 20px;
width: 50%;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
}
.header {
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
height: 15vh;
position: fixed;
width: 100%;
background-color: #FFFFFF;
display: flex;
align-content: center;
justify-content: center;
}
.nav {
position: fixed;
top: 20vh;
left: 5%;
width: 15%;
min-height: 10%;
max-height: 90%;
overflow: scroll;
background-color: #FFFFFF;
border-radius: 15px;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
display: flex;
flex-direction: column;
align-content: center;
}
img {
max-width: 50%;
}
.imageContainer {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-content: space-around;
flex-wrap: wrap;
background-color: #FFFFFF;
}
button {
color: #800000;
background-color: #FFFFFF;
border-style: solid;
border-width: 1px;
border-color: #800000;
border-radius: 10px;
margin: 10px;
padding: 5px;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1), 0 3px 10px 0 rgba(0, 0, 0, 0.1);
-webkit-transition: background-color 0.25s; /* For Safari 3.1 to 6.0 */
transition: background-color 0.25s;
}
button:hover {
background-color: #800000;
color: #FFFFFF;
}