Showing
3 changed files
with
36 additions
and
0 deletions
... | @@ -18,3 +18,31 @@ h2 { | ... | @@ -18,3 +18,31 @@ h2 { |
18 | flex: 1; | 18 | flex: 1; |
19 | display: flex; | 19 | display: flex; |
20 | } | 20 | } |
21 | + | ||
22 | +button { | ||
23 | + cursor: pointer; | ||
24 | + background-color: white; | ||
25 | + color: black; | ||
26 | + border: solid thin; | ||
27 | + border-color: lavender; | ||
28 | + border-radius: 3px; | ||
29 | +} | ||
30 | + | ||
31 | +button { | ||
32 | + -webkit-transition-duration: 0.4s; /* Safari */ | ||
33 | + transition-duration: 0.4s; | ||
34 | +} | ||
35 | + | ||
36 | +button:hover:not(:disabled) { | ||
37 | + background-color: rgba(39, 197, 250, 0.334); | ||
38 | + color: white; | ||
39 | +} | ||
40 | + | ||
41 | +button:active:not(:disabled) { | ||
42 | + background-color: rgba(39, 197, 250, 0.548); | ||
43 | +} | ||
44 | + | ||
45 | +button:disabled { | ||
46 | + cursor: auto; | ||
47 | + color: rgb(209, 209, 209); | ||
48 | +} | ... | ... |
... | @@ -26,6 +26,7 @@ header { | ... | @@ -26,6 +26,7 @@ header { |
26 | .hcb { | 26 | .hcb { |
27 | height: 34px; | 27 | height: 34px; |
28 | margin: 10px; | 28 | margin: 10px; |
29 | + font-size: medium; | ||
29 | } | 30 | } |
30 | 31 | ||
31 | .hcd { | 32 | .hcd { |
... | @@ -33,6 +34,7 @@ header { | ... | @@ -33,6 +34,7 @@ header { |
33 | } | 34 | } |
34 | 35 | ||
35 | .hcd > button { | 36 | .hcd > button { |
37 | + border-radius: 0; | ||
36 | font-size: large; | 38 | font-size: large; |
37 | } | 39 | } |
38 | 40 | ||
... | @@ -47,6 +49,7 @@ header { | ... | @@ -47,6 +49,7 @@ header { |
47 | } | 49 | } |
48 | 50 | ||
49 | .hrd > button { | 51 | .hrd > button { |
52 | + border-radius: 0; | ||
50 | padding: 8px 14px 8px 14px; | 53 | padding: 8px 14px 8px 14px; |
51 | font-size: medium; | 54 | font-size: medium; |
52 | } | 55 | } | ... | ... |
... | @@ -11,9 +11,14 @@ aside { | ... | @@ -11,9 +11,14 @@ aside { |
11 | } | 11 | } |
12 | 12 | ||
13 | .ssc { | 13 | .ssc { |
14 | + cursor: pointer; | ||
14 | height: 15px; | 15 | height: 15px; |
15 | width: 15px; | 16 | width: 15px; |
16 | margin: 5px 10px 5px 5px; | 17 | margin: 5px 10px 5px 5px; |
17 | border: solid thin grey; | 18 | border: solid thin grey; |
18 | border-radius: 3px; | 19 | border-radius: 3px; |
19 | } | 20 | } |
21 | + | ||
22 | +.SideSubject > span { | ||
23 | + line-height: 25px; | ||
24 | +} | ... | ... |
-
Please register or login to post a comment