about summary refs log tree commit diff stats
path: root/app/assets
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/stylesheets/wittle/general.css.scss33
1 files changed, 31 insertions, 2 deletions
diff --git a/app/assets/stylesheets/wittle/general.css.scss b/app/assets/stylesheets/wittle/general.css.scss index b2b432d..9d893b6 100644 --- a/app/assets/stylesheets/wittle/general.css.scss +++ b/app/assets/stylesheets/wittle/general.css.scss
@@ -75,17 +75,46 @@ input[type="range"]::-ms-thumb {
75 75
76#scores { 76#scores {
77 display: flex; 77 display: flex;
78 78
79 div { 79 div {
80 flex: 0 0 48%; 80 flex: 0 0 48%;
81 81
82 h2 { 82 h2 {
83 text-align: center; 83 text-align: center;
84 } 84 }
85 85
86 table { 86 table {
87 width: max-content; 87 width: max-content;
88 margin: 0 auto; 88 margin: 0 auto;
89 } 89 }
90 } 90 }
91} 91}
92
93#activation-button {
94 button {
95 display: block;
96 margin: 0 auto;
97 width: 25%;
98 background-color: #04AA6D;
99 padding: 14px 28px;
100 font-size: 16px;
101 cursor: pointer;
102 text-align: center;
103 color: white;
104 }
105}
106
107#timer {
108 width: max-content;
109 margin: 0.5em auto 0;
110 font-size: 3em;
111
112 %label {
113 padding: 0;
114 }
115}
116
117.score-field {
118 padding-left: 1em;
119 text-align: right;
120}