-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (35 loc) · 776 Bytes
/
style.css
File metadata and controls
41 lines (35 loc) · 776 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
@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');
body {
padding: 20px;
background-color: #282c34;
color: #dfdfdf;
font-family: "Rubik";
line-height: 22px;
margin: 0 auto;
max-width: 960px;
text-align: center;
}
.title {
font-size: 55px;
}
.info {
font-size: 20px;
}
a:link, a:visited {
border-radius: 25px;
background-color: rgb(86, 168, 235);
color: black;
border: 2px solid rgb(86, 168, 235);
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
}
a:hover, a:active {
border-radius: 25px;
background-color: rgb(86, 168, 235);
color: white;
}
.header {
font-size: 35px;
}