Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ryan778
GitHub Repository: Ryan778/Ryan778.github.io
Path: blob/master/resources/style.css
574 views
1
#parallax-head{
2
color: white;
3
text-shadow: 2px 2px 2px #333;
4
position: absolute;
5
bottom: 10%;
6
width: auto;
7
padding: 0 10px;
8
background: rgba(0, 0, 0, 0.2);
9
}
10
#parallax-head h3{
11
color: rgb(206, 252, 180);
12
line-height: 0;
13
}
14
15
h4 a{
16
color: #1e69d8;
17
transition: all 0.2s;
18
}
19
20
h4 a:hover, h4 a:focus{
21
color: #68a2ec;
22
}
23
24
p{
25
font-size: 1.1em;
26
}
27
28
.date{
29
color: #6c6caf;
30
}
31
32
.txt-wip{
33
color: #976810;
34
}
35
36
.txt-wip::before{
37
content: 'In Development';
38
}
39
40
.txt-cur{
41
color: #187220;
42
}
43
44
.txt-cur::before{
45
content: 'Active Development';
46
}
47
48
.txt-mt{ /*"maintenance"*/
49
color: #211872;
50
}
51
52
.txt-mt::before{
53
content: 'Maintenance Only';
54
}
55
56
.txt-dp{ /*"deprecated"*/
57
color: #610f0f;
58
}
59
60
.txt-dp::before{
61
content: 'No Longer Maintained';
62
}
63
64
@media only screen and (max-width: 601px) {
65
#parallax-head{
66
width: calc(100% - 10%);
67
}
68
}
69
70