forked from firtman/cds21
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
91 lines (82 loc) · 1.85 KB
/
styles.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
body {
--color-back: white;
--color-title: rgb(7, 155, 163);
--color-theme: #bb7162;
--color-icon-front: whitesmoke;
--color-toolbar: rgb(7, 155, 163);
--color-toolbar-button: white;
}
@font-face {
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: url(https://fonts.gstatic.com/s/materialicons/v67/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2) format('woff2');
}
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
background-color: var(--color-back);
}
h1 {
font-size: x-large;
text-align: center;
color: var(--color-title)
}
ul {
list-style: none;
padding: 0;
text-align: center;
display: flex;
margin: 5px;
}
#shortcuts {
flex-wrap: wrap;
align-items: stretch;
align-content: center;
justify-content: space-evenly;
}
#shortcuts p {
font-size: small;
}
#shortcuts a {
width: 80px;
display: block;
text-decoration: none;
margin: 10px;
color: var(--color-theme)
}
#shortcuts .material-icons {
font-family: 'Material Icons';
font-weight: normal;
font-style: normal;
line-height: 1;
letter-spacing: normal;
text-transform: none;
display: inline-block;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
-webkit-font-feature-settings: 'liga';
-webkit-font-smoothing: antialiased;
font-size: 40px;
border-radius: 15px;
padding: 15px;
margin-bottom: 0px;
color: var(--color-icon-front);
background-color: var(--color-theme);
}
#toolbar {
flex-wrap: wrap;
align-items: stretch;
align-content: center;
justify-content: space-evenly;
margin: 20px;
}
#toolbar a {
display: block;
text-decoration: none;
background-color: var(--color-toolbar);
color: var(--color-toolbar-button);
font-size: 12px;
padding: 12px;
line-height: 1;
}