-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathscreen.css
76 lines (65 loc) · 1.49 KB
/
screen.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
html {
padding: 2.4em;
}
.sheet {
border: 1px solid black;
}
#save > section:first-of-type > aside {
background-color: #f5f5f5;
}
#save > section:first-of-type aside .skills > ul > li > span {
background-color: white;
}
button, a[role="button"] {
user-select: none;
}
#document-controls {
position: fixed;
right: 0;
top: 0;
margin-top: 0.5em;
margin-right: 0.5em;
display: flex;
flex-direction: column;
}
#document-controls button + button,
#document-controls button + a[role="button"],
#document-controls a[role="button"] + a[role="button"],
#document-controls a[role="button"] + button {
margin-top: 0.5em;
}
#github-link {
display: block;
position: fixed;
left: 0;
top: 0;
margin-top: 0.5em;
margin-left: 0.5em;
text-decoration: none;
color: black;
}
/* Source https://www.bestcssbuttongenerator.com/#/36 */
button, a[role="button"] {
box-shadow:inset 0px 1px 0px 0px white;
background:linear-gradient(to bottom, #ededed 5%, #dfdfdf 100%);
background-color:#ededed;
border-radius:6px;
border:1px solid #dcdcdc;
display:inline-block;
cursor:pointer;
color:#777777;
font-size:15px;
font-weight:bold;
padding:6px 24px;
text-decoration:none;
text-shadow:0px 1px 0px white;
}
button:hover, button:active,
a[role="button"]:hover, a[role="button"]:active {
background:linear-gradient(to bottom, #dfdfdf 5%, #ededed 100%);
background-color:#dfdfdf;
}
button:active, a[role="button"]:active {
position:relative;
top:1px;
}