-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (72 loc) · 1.15 KB
/
style.css
File metadata and controls
84 lines (72 loc) · 1.15 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
.container {
margin: 0 auto;
padding: 15px 70px;
max-width: 600px;
background: linear-gradient(#b4aee8, #ffe3fe);
font-family: Georgia, 'Times New Roman', Times, serif;
border: 1px solid #b4aee8;
border-radius: 10px;
}
h1,
h2 {
text-align: center;
color: #93329e;
}
h1 {
border: 2px solid white;
border-radius: 5px;
font-size: 3em;
}
img {
display: block;
margin: 40px auto;
max-width: 70%;
}
p {
line-height: 1.5;
font-size: 20px;
}
.read-more {
font-size: 14px;
}
a,
.read-more {
text-decoration: none;
color: #93329e;
padding-bottom: 20px;
}
button {
font-size: 20px;
padding: 15px 20px;
display: block;
margin: 40px auto;
background-color: #93329e;
color: #ffe3fe;
border-radius: 10px;
border: 1px solid #93329e;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
transition: all 200ms ease-in-out;
}
button:hover {
cursor: pointer;
background-color: #ffe3fe;
color: #93329e;
}
hr {
margin-top: 20px;
}
.footer {
text-align: center;
font-size: smaller;
}
@media (max-width: 900px) {
.container {
padding: 20px;
}
h1 {
font-size: 40px;
}
p {
text-align: center;
}
}