Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ryan778
GitHub Repository: Ryan778/Ryan778.github.io
Path: blob/master/linktree/style.css
574 views
1
html{
2
color: white;
3
font-family: 'Open Sans', 'Arial', sans-serif;
4
scrollbar-color: #628bb9 #2c2d55;
5
-moz-user-select: none;
6
-webkit-user-select: none;
7
user-select: none;
8
}
9
10
::-webkit-scrollbar {
11
width: 8px;
12
}
13
14
::-webkit-scrollbar-track-piece {
15
background-color: #2c2d55;
16
}
17
18
::-webkit-scrollbar-thumb:vertical {
19
height: 30px;
20
background-color: #628bb9;
21
border-radius: 4px;
22
}
23
24
h1, h2, h3{
25
color: white;
26
text-shadow: 1px 1px 2px #222, 0px 0px 1px black;
27
}
28
29
h1{
30
line-height: 0;
31
margin-top: 70px;
32
}
33
34
h3{
35
margin-bottom: 0;
36
}
37
38
hr{
39
border: 1px solid #fff;
40
box-shadow: 1px 1px 3px #333;
41
border-bottom: none;
42
}
43
44
.new{
45
background: rgba(72, 173, 219, 0.5);
46
border-radius: 2px;
47
padding: 1px 3px;
48
font-size: 14px;
49
text-shadow: none;
50
margin-left: 7px;
51
}
52
53
.fl{
54
float: left;
55
}
56
57
.clkb{ /*Clickable*/
58
color: #8cf;
59
cursor: pointer;
60
text-decoration: none;
61
transition: all 0.2s;
62
}
63
64
.clkb:hover, .clkb:focus{
65
outline: none;
66
text-decoration: underline;
67
color: #adf;
68
}
69
70
.clkb:active{
71
color: #cef;
72
}
73
74
#footer{
75
font-size: 12px;
76
text-align: center;
77
text-shadow: 1px 1px 2px #333;
78
}
79
80
#bk{
81
position: fixed;
82
z-index: -1;
83
top: 0;
84
left: 0;
85
width: 100%;
86
height: 100%;
87
transition: all 0.4s;
88
background-image: url(lake-night.jpg);
89
background-position: center;
90
background-size: cover;
91
transform: scale(1.02);
92
}
93
94
#content{
95
width: 100%;
96
max-width: 600px;
97
margin: auto;
98
}
99
100
button{
101
color: white;
102
width: 100%;
103
height: 40px;
104
margin: 5px 0px;
105
border: 1px solid #fff;
106
background: rgba(60, 137, 196, 0.4);
107
text-shadow: 1px 1px 2px #333;
108
border-radius: 2px;
109
transition: all 0.2s;
110
font-size: 18px;
111
}
112
113
button:hover:not([disabled]){
114
background-color: rgba(114, 170, 219, 0.55);
115
cursor: pointer;
116
}
117
118
button:focus{
119
outline: none;
120
border-color :#4af;
121
box-shadow: 0px 0px 4px rgb(92, 169, 226);
122
}
123
124
button:active:not([disabled]){
125
background-color: rgba(192, 235, 255, 0.55);
126
border-color :#7bf;
127
}
128
129
.rsp_s{
130
display: none;
131
}
132
133
@media only screen and (max-width: 600px) {
134
h1{
135
margin-top: 25px;
136
}
137
}
138
139
@media only screen and (max-width: 350px) {
140
.rsp {
141
display: none;
142
}
143
.rsp_s{
144
display: initial;
145
}
146
}
147
148