-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
105 lines (87 loc) · 1.78 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
@font-palette-values --nabla {
font-family: nabla;
base-palette: 7;
}
body{
margin-left: 30px;
background-color:#63b7be;
}
path{
stroke-dasharray: 1000;
animation: dash 5s linear forwards;
}
@keyframes dash {
to {
stroke-dashoffset: 2000;
}
}
/*
patheyes{
stroke-dasharray: 500;
animation: dash2 5s linear backwards;
}
@keyframes dash2 {
to {
stroke-dashoffset: 500 ;
}
}
*/
article {
max-width: 80ch
}
head{
margin-left: 20px
}
h1 {
font-family: 'Nabla', cursive;
font-size: 350%;
font-palette: --nabla
}
.blogtitle {
color:#166826;
font-family: 'Duru Sans', sans-serif;
font-size: 14px;
line-height: 30%
}
.bigblogtitle {
color:#166826;
font-family: 'Duru Sans', sans-serif;
font-size: 64px;
}
ul {font-family: 'Duru Sans', sans-serif;
font-size: 14px;
margin-left: 40px;
line-height: 130%;
padding: 0px;
}
.bloggin {
font-family: 'Duru Sans', sans-serif;
font-size: 14px;
margin-left: 10px;
line-height: 130%
}
a:link {
color: rgb(226, 244, 125);
background-color: transparent;
text-decoration: none;
}
a:visited {
color: rgb(141, 60, 141);
background-color: transparent;
text-decoration: none;
}
a:hover {
color: red;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: yellow;
background-color: transparent;
text-decoration: underline;
}
.date {
font-family: 'PT Sans Narrow', sans-serif;
font-size:11px;
margin-top: 30px
}