-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (87 loc) · 1.73 KB
/
Copy pathstyle.css
File metadata and controls
103 lines (87 loc) · 1.73 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
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;700&display=swap');
*{
font-family: 'Rubik', sans-serif;
font-size: 1rem;
line-height: 2rem;
}
html, body {
margin: 0;
padding: 0;
}
#title {
background-color: white;
color: #BF7256;
padding: 2px;
align-content: center;
line-height: 2rem;
text-align: center;
}
#title h1 {
font-size: 3rem;
}
#main {
background-color: #C7D9D7;
color: #425944;
margin:0;
padding: 10px;
width: auto;
font-size: 3rem;
display: flex;
flex-direction: row;
justify-content: center;
}
#img-div {
align-items: center;
width: 100%;
max-width: 450px;
height: auto;
margin: 10px;
padding: 5px;
}
#image {
width: 100%;
max-width: 450px;
padding-top: 0.8rem;
display: block;
}
#tribute-info {
width: 400px;
margin-left: 2px;
padding: 4px;
text-align: left;
}
#tribute-link{
background-color: white;
color: #425944;
margin:0;
padding: 10px;
width: auto;
font-size: 1rem;
display: flex;
flex-direction: row;
justify-content: center;
text-decoration: none;
text-align: center;
}
#tribute-link:hover{
text-decoration: none;
color: #BF7256;
}
/* Mobity first -- Media Queries here */
@media (max-width: 800px) {
#title {
font-size:100%;
}
#main {
display: flex;
flex-direction: column;
align-items: center;
width: auto;
}
#tribute-info {
margin-left: 0px;
padding: 0;
text-align: left;
width: 100%;
}
}