Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ryan778
GitHub Repository: Ryan778/Ryan778.github.io
Path: blob/master/ad-blocked/about/style.css
575 views
1
@import 'https://fonts.googleapis.com/css?family=Open+Sans|Raleway:700';
2
3
html{
4
background: rgb(245,253,255);
5
text-align: center;
6
font-family: "Open Sans", sans-serif;
7
margin-top: calc(8em)
8
}
9
10
h1{
11
font-family: "Raleway", sans-serif;
12
font-size: 3em;
13
}
14
15
p{
16
padding: 5px 10%;
17
}
18
19
button{
20
border: 1px solid lightgray;
21
background: rgb(220, 240, 255);
22
border-radius: 4px;
23
padding: 8px 16px;
24
margin: 6px;
25
text-align: center;
26
cursor: pointer;
27
transition: all 0.2s;
28
outline: none;
29
font-size: 24px;
30
}
31
button:hover{
32
background: rgb(225, 245, 255);
33
border: 1px solid #aaa
34
}
35
button:active{
36
background: rgb(232, 252, 255);
37
border: 1px solid #777
38
}
39