-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (60 loc) · 1.02 KB
/
style.css
File metadata and controls
69 lines (60 loc) · 1.02 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
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body{
font-family: 'Roboto', sans-serif;
color: whitesmoke;
background-color: #0d1117;
padding: 1% 10%;
}
html{
scroll-behavior: smooth;
}
h1{
margin: 35px 0 0 0;
}
h2{
margin: 0;
font-size: 1.75em;
}
h3{
margin: 5px;
padding-top: 35px;
}
h3.subtitle{
margin-top: 10px;
padding-top: 0px;
margin-bottom: 30px;
font-weight: 500;
font-size: 1.5em;
}
img.banner{
border-radius: 10px;
padding: 5px;
}
quote{
line-height: 1.5em;
}
a{
text-decoration: none;
color: #58a6ff;
}
a.demo{
display: block;
padding-top: 5px;
transition: color .2s;
}
a.demo:hover{
color: #58c5ff
}
p{
margin-top: 50px;
color: #bddcff;
cursor: pointer;
font-weight: 500;
transition: color .2s;
transition: opacity .2s;
opacity: .8;
}
p:hover{
color: #a4cbf8;
opacity: 1;
}