diff options
author | rtz12 <koenig@fagott.pw> | 2016-01-17 21:31:12 (UTC) |
---|---|---|
committer | rtz12 <koenig@fagott.pw> | 2016-01-17 21:31:12 (UTC) |
commit | 72ad0e53f3887b5ad74034a99c6453a88eeb0cbd (patch) | |
tree | a2b83127f37ff1706e593f15299cd6e7347f788a /assets_src/css | |
parent | 6cb2de0a1f583ef8d018e430181a7414fa7faff1 (diff) |
Geiles neues Buildsystem fuer die Assets
Diffstat (limited to 'assets_src/css')
-rw-r--r-- | assets_src/css/gril.css | 31 | ||||
-rw-r--r-- | assets_src/css/list.css | 27 | ||||
-rw-r--r-- | assets_src/css/search.css | 20 |
3 files changed, 78 insertions, 0 deletions
diff --git a/assets_src/css/gril.css b/assets_src/css/gril.css new file mode 100644 index 0000000..b82e2c7 --- /dev/null +++ b/assets_src/css/gril.css | |||
@@ -0,0 +1,31 @@ | |||
1 | #gril-title { | ||
2 | margin-bottom: 0rem; | ||
3 | } | ||
4 | |||
5 | #gril-alias { | ||
6 | margin-top: 0rem; | ||
7 | margin-bottom: 1rem; | ||
8 | } | ||
9 | |||
10 | .gril-tag { | ||
11 | transition: background-color .2s, color .2s; | ||
12 | } | ||
13 | |||
14 | .gril-tag:hover { | ||
15 | background-color: #BA68C8; | ||
16 | color: #FFF; | ||
17 | } | ||
18 | |||
19 | h1 > small { | ||
20 | padding-left: 8px; | ||
21 | font-size: 50%; | ||
22 | } | ||
23 | |||
24 | .card-title.big { | ||
25 | font-size: 36px !important; | ||
26 | } | ||
27 | |||
28 | .card-content.center-big { | ||
29 | padding-top: 9px; | ||
30 | padding-bottom: 9px; | ||
31 | } | ||
diff --git a/assets_src/css/list.css b/assets_src/css/list.css new file mode 100644 index 0000000..7e6dde9 --- /dev/null +++ b/assets_src/css/list.css | |||
@@ -0,0 +1,27 @@ | |||
1 | .jap-name { | ||
2 | color: rgb(166, 166, 166); | ||
3 | } | ||
4 | |||
5 | .list-entry { | ||
6 | height: 80px; | ||
7 | padding: 8px; | ||
8 | } | ||
9 | |||
10 | .list-img { | ||
11 | width: 64px; | ||
12 | height: 64px; | ||
13 | } | ||
14 | |||
15 | .list-controls { | ||
16 | position: relative; | ||
17 | top: 8px; | ||
18 | left: -15px; | ||
19 | } | ||
20 | |||
21 | .gril-img { | ||
22 | background-repeat: no-repeat; | ||
23 | background-position: center center; | ||
24 | background-size: cover; | ||
25 | width: 64px; | ||
26 | height: 64px; | ||
27 | } \ No newline at end of file | ||
diff --git a/assets_src/css/search.css b/assets_src/css/search.css new file mode 100644 index 0000000..124a378 --- /dev/null +++ b/assets_src/css/search.css | |||
@@ -0,0 +1,20 @@ | |||
1 | .collection .collection-item.avatar { | ||
2 | min-height: 64px !important; | ||
3 | } | ||
4 | |||
5 | .collection-item.avatar > .circle { | ||
6 | top: 12px; | ||
7 | } | ||
8 | |||
9 | .search-results { | ||
10 | top: -50px; | ||
11 | z-index: 2; | ||
12 | } | ||
13 | |||
14 | .collection > .collection-item { | ||
15 | transition: background-color .35s; | ||
16 | } | ||
17 | |||
18 | .collection > .collection-item:hover { | ||
19 | background-color: #e1bee7; | ||
20 | } \ No newline at end of file | ||