summary refs log tree commit diff stats
path: root/web/views/style.scss
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-11-30 04:12:45 +0000
committerStar Rauchenberger <fefferburbia@gmail.com>2023-11-30 04:12:45 +0000
commit460edd4191229635e86c0e3781a361126c140ca9 (patch)
tree019e4e087cd1535125d99ab3cf3a430ed63fce76 /web/views/style.scss
parent9fc4c06bb40ff3d74031f1dd07e0352f965fc01e (diff)
parent83437f5895fd4f110694e66c9d939ff492bc2e1b (diff)
downloadlingo-460edd4191229635e86c0e3781a361126c140ca9.tar.gz
lingo-460edd4191229635e86c0e3781a361126c140ca9.tar.bz2
lingo-460edd4191229635e86c0e3781a361126c140ca9.zip
Merge branch 'main' of /srv/git/lingo into main
Diffstat (limited to 'web/views/style.scss')
-rw-r--r--web/views/style.scss55
1 files changed, 55 insertions, 0 deletions
diff --git a/web/views/style.scss b/web/views/style.scss new file mode 100644 index 0000000..a65cd94 --- /dev/null +++ b/web/views/style.scss
@@ -0,0 +1,55 @@
1body {
2 background-color: black;
3 color: white;
4 font-family: sans-serif;
5}
6
7#header {
8 width: 100%;
9
10 img {
11 max-width: 80%;
12 margin: 0 auto;
13 display: block;
14 }
15}
16
17h2 {
18 text-align: center;
19}
20
21#scores {
22 margin: 0 auto;
23 border-spacing: 0px;
24 tr {
25 &.even {
26 background-color: gray;
27 }
28 &.odd {
29 background-color: purple;
30 }
31 th {
32 text-align: left;
33 padding-left: 0.5em;
34 padding-bottom: 0.5em;
35 }
36 td {
37 padding-right: 1em;
38 padding-top: 0.5em;
39 padding-bottom: 0.5em;
40 border-collapse: collapse;
41 &:first-child {
42 padding-left: 1em;
43 }
44 img {
45 width: 2em;
46 }
47 &.score-pfp {
48 width: 2em;
49 }
50 &.score-value {
51 text-align: center;
52 }
53 }
54 }
55} \ No newline at end of file