-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjrst.css
More file actions
executable file
·62 lines (57 loc) · 989 Bytes
/
jrst.css
File metadata and controls
executable file
·62 lines (57 loc) · 989 Bytes
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
html{
font-size: 18px;
}
body{
background-color: rgb(142, 68, 145);
background-repeat: repeat;
}
p, a{
font-family: "Blogger Sans", sans-serif;
font-size: 1.3rem;
color: rgb(66, 33, 79);
text-align: center;
}
h1{
font-family: "BigNoodleTitling", sans-serif;
font-size: 3.4rem;
color: rgb(142, 68, 145);
}
.section{
display: block;
background-color: white;
background-position: center;
margin: auto;
padding: 10px;
width: 90%
}
.img_container{
display: inline-block;
padding: 10px;
}
.section_img_container{
display: block;
background-position: center;
margin: auto;
padding: 10px;
overflow: hidden;
}
@media (max-width:499px) {
.img_thumb{
width: 70px;
}
.section_img_container{
height: 1px;
visibility: hidden;
}
}
@media (min-width:500px){
.section, .section_img_container{
max-width: 720px;
min-width: 480px;
}
}
@media (min-width:800px){
.section, .section_img_container{
max-width: 768px;
}
}