-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
105 lines (105 loc) · 2.08 KB
/
styles.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
103
104
105
html,
* {
border: 0;
margin: 0 auto;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
list-style-type: none;
}
body {
background-image: radial-gradient(rgb(164, 121, 198) 30%, transparent 30%),
radial-gradient(rgb(164, 121, 198) 30%, transparent 30%),
radial-gradient(rgb(44, 82, 93) 30%, transparent 30%),
radial-gradient(rgb(44, 82, 93) 30%, transparent 30%);
background-position: 0px 0px, 104px 104px, -10.4px 10.4px, 93.6px 114.4px;
background-size: 208px 208px;
background-color: rgb(259, 226, 126);
}
h1 {
font-size: 20px;
}
h2 {
font-size: 12px;
}
#top {
background-color: #00e27e;
box-shadow: -5px 5px 5px;
border: 2px dashed black;
padding: 6px;
vertical-align: middle;
text-decoration: none;
font-family: fantasy;
border-radius: 0px 10px 0px 0px;
color: black;
transition: all, 0.3s;
}
#top:hover {
color: #7235a4;
}
#top:active {
color: black;
}
#f {
opacity: 0.05;
}
.art {
display: flex;
justify-content: center;
align-items: center;
flex-flow: wrap;
text-align: center;
margin-top: 5px;
}
.art img {
max-width: 90vw;
border-radius: 10px;
box-shadow: -5px 10px 5px;
margin-bottom: 2%;
border: 3px solid black;
}
.caption,
h1 {
background-color: #00e27e;
border-radius: 10px;
margin: auto;
padding: 6px;
box-shadow: -5px 5px 5px;
border: 2px solid black;
max-width: fit-content;
}
li {
padding-bottom: 3%;
}
@media screen and (min-width: 750px) {
h1 {
font-size: 40px;
}
h2 {
font-size: 22px;
}
.art img {
max-width: 75vw;
}
}
@media screen and (min-width: 900px) {
h1 {
font-size: 55px;
}
h2 {
font-size: 28px;
}
.art img {
max-width: 75vw;
}
}
@media screen and (min-width: 1200px) {
h1 {
font-size: 40px;
}
h2 {
font-size: 28px;
}
.art img {
max-width: 50vw;
}
}