Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ryan778
GitHub Repository: Ryan778/Ryan778.github.io
Path: blob/master/resources/template.css
574 views
1
html {
2
cursor: default;
3
}
4
::selection {
5
background: #cdf;
6
}
7
.ns {
8
-webkit-user-select: none;
9
-moz-user-select: none;
10
user-select: none;
11
}
12
hr{
13
border: 1px solid #555;
14
border-top: none;
15
}
16
h2 {
17
font-size: 2.7rem;
18
}
19
h3 {
20
font-size: 2.0rem;
21
}
22
h4 {
23
font-size: 1.6rem;
24
}
25
.cont-outer {
26
display: flex;
27
margin: 0;
28
padding-bottom: 10px;
29
}
30
31
.cont-align {
32
left: 5%;
33
}
34
@media only screen and (min-width: 601px) {
35
.cont-align {
36
left: 7.5%;
37
}
38
}
39
@media only screen and (min-width: 993px) {
40
.cont-align {
41
left: 15%;
42
}
43
}
44
45