-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathocean.css
More file actions
54 lines (45 loc) · 722 Bytes
/
ocean.css
File metadata and controls
54 lines (45 loc) · 722 Bytes
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
:any-link {
text-decoration-style: wavy;
transition: 200ms;
}
:focus {
outline: thick dotted;
text-decoration-style: dotted;
}
:hover {
text-decoration-style: double;
}
html {
font-family: fantasy;
font-size: calc(1em + 1vw + 1vh);
line-height: 1.618;
}
body {
margin: 0;
}
.pad {
padding: 1ex;
}
.unity {
box-sizing: border-box;
display: flex;
flex-flow: wrap;
margin: 0;
padding: 0;
align-items: flex-end;
justify-content: flex-end;
text-align: inline-end;
}
.unified {
align-self: flex-end;
list-style: none;
padding: 1em;
flex-basis: 62%;
text-align: end;
}
.unified:first-child {
border-radius: 100% 0 0;
}
.unified:last-child {
border-radius: 0 0 0 100%;
}