Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ryan778
GitHub Repository: Ryan778/Ryan778.github.io
Path: blob/master/a-social-life/styles.css
570 views
1
::selection{
2
background: rgba(140, 200, 255, 0.4);
3
}
4
5
::-webkit-scrollbar {
6
width: 10px;
7
}
8
9
::-webkit-scrollbar-track {
10
background: linen;
11
}
12
13
::-webkit-scrollbar-thumb {
14
background: #888;
15
border-radius: 2px;
16
}
17
18
::-webkit-scrollbar-thumb:hover {
19
background: #777;
20
}
21
22
hr{
23
border: none;
24
border-bottom: 1px solid black;
25
}
26
27
html{
28
min-height: 100%;
29
scroll-behavior: smooth;
30
cursor: default;
31
}
32
33
#slide-outer{
34
scroll-snap-type: y mandatory;
35
}
36
37
.btn-nt{ /*No transform*/
38
text-transform: none;
39
}
40
41
.slide{
42
scroll-snap-align: start;
43
background: linen;
44
width: 100%;
45
height: 100vh;
46
padding: 18px;
47
font-size: 1.5em;
48
border-bottom: 1px solid #aaa;
49
}
50
51
.slide-vh{
52
background: #fce7ca;
53
min-height: 100vh;
54
height: auto;
55
}
56
57
.lg{
58
font-size: 1em
59
}
60
61
.sm{
62
font-size: 0.75em
63
}
64
65
.inl{
66
display: inline;
67
}
68
69
.i-num{
70
width: 60px;
71
}
72
73
.gr{
74
color: #888;
75
}
76
77
h1, h2, h3, h4, h5, h6{
78
margin-top: 0
79
}
80
81
h1{
82
font-size: 2.5em}
83
84
h2{
85
font-size: 2em}
86
87
h3{
88
font-size: 2em}
89
90
h4{
91
font-size: 1.75em}
92
93
h5, h6{
94
font-size: 1.5em}
95
96
.mt{
97
margin-left: 15%;
98
width: 70%;
99
margin-top: 20vh;
100
}
101