-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (48 loc) · 838 Bytes
/
Copy pathstyle.css
File metadata and controls
59 lines (48 loc) · 838 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
.over50k{
font-family: 'Cinzel', serif;
text-align: center;
}
header{
background-image: linear-gradient(rgb(55, 55, 253), rgb(195, 195, 252));
font-family: 'Cinzel', serif;
text-align: center;
height: 200px;
border-radius: 10px;
font-size: large;
}
h1{
padding-top: 5%;
}
body{
height: 5000px;
}
main{
display: flex;
flex-direction: row;
justify-content: space-between;
margin-top: 3px;
}
ul{
list-style: none;
}
li{
margin-right: 33px;
}
main section{
background-image: linear-gradient(red,white);
margin: 1%;
border-radius: 10px;
text-align: center;
}
section h2{
font-size: 30px;
font-family: 'Cinzel', serif;
}
@media all and (max-width:500px) {
h1{
font-size: x-large;
}
body h2{
font-size: large;
}
}