-
Notifications
You must be signed in to change notification settings - Fork 0
/
css.lisp
57 lines (46 loc) · 862 Bytes
/
css.lisp
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
(css
(* (
(box-sizing border-box)
(margin 0)))
(.header (
(font-size min(10vw 10vh))
(display flex)
(flex-direction column)
(align-items center)
(margin-bottom 5vh)))
(.title (
(align-items center)
(display flex)))
(.nav (
(display flex)
(gap min(6vw 6vh))))
(.link (
(font-size min(6vw 6vh))
(color "#524747")
(text-decoration none)))
(.linkhover (
(color "#ba53c6")))
(.link-current (
(color "#773edb")))
(body (
(display flex)
(flex-direction column)
(min-height 100vh)))
(.body (
(font-size min(5vh 5vw))
(margin-left 8vw)
(margin-right 8vw)
(flex 1)))
(.footer (
(display flex)
(font-size max(1.5vh 1.5vw))
(margin-top 5vh)
(margin-bottom 1vh)
(margin-left 5vw)
(margin-right 5vw)
(align-items flex-end)))
(h2 (
(font-size min(6vh 6vw))))
(img (
(max-width 100%)
(height auto))))