diff options
author | Anton Luka Šijanec <anton@sijanec.eu> | 2022-01-11 12:35:47 +0100 |
---|---|---|
committer | Anton Luka Šijanec <anton@sijanec.eu> | 2022-01-11 12:35:47 +0100 |
commit | 19985dbb8c0aa66dc4bf7905abc1148de909097d (patch) | |
tree | 2cd5a5d20d7e80fc2a51adf60d838d8a2c40999e /main/survey/skins/glasovanje | |
download | 1ka-19985dbb8c0aa66dc4bf7905abc1148de909097d.tar 1ka-19985dbb8c0aa66dc4bf7905abc1148de909097d.tar.gz 1ka-19985dbb8c0aa66dc4bf7905abc1148de909097d.tar.bz2 1ka-19985dbb8c0aa66dc4bf7905abc1148de909097d.tar.lz 1ka-19985dbb8c0aa66dc4bf7905abc1148de909097d.tar.xz 1ka-19985dbb8c0aa66dc4bf7905abc1148de909097d.tar.zst 1ka-19985dbb8c0aa66dc4bf7905abc1148de909097d.zip |
Diffstat (limited to '')
-rw-r--r-- | main/survey/skins/glasovanje/Classic.css | 58 | ||||
-rw-r--r-- | main/survey/skins/glasovanje/Modern.css | 45 |
2 files changed, 103 insertions, 0 deletions
diff --git a/main/survey/skins/glasovanje/Classic.css b/main/survey/skins/glasovanje/Classic.css new file mode 100644 index 0000000..c0c943f --- /dev/null +++ b/main/survey/skins/glasovanje/Classic.css @@ -0,0 +1,58 @@ +/*p, #arhiv {
+ font-size: 12px;
+}*/
+
+.glas_settings_title p{
+ padding: 5px 0 !important;
+
+ /*font-size: 14px;
+ font-weight: bold;*/
+}
+
+#graph{
+ width: 340px;
+ height: 10px;
+ background-color: #dddddd;
+ border: 1px #aaaaaa solid;
+}
+
+#graph .graph_fill{
+ height: 10px;
+ background-color: #0c377a;
+}
+
+.spol{
+ margin: 20px 0 0 0;
+ font-weight: bold;
+}
+.spol table tr td{
+ vertical-align: bottom;
+}
+.spol_buttons{
+ width: 330px;
+ margin: 15px 10px;
+
+ text-align: center;
+}
+.spol_buttons input{
+ cursor: pointer;
+ width: 75px;
+ padding: 2px;
+ margin: 0 4px 0 4px;
+
+ background-color: #eff2f7;
+ border: 1px solid #dfe2e7;
+ color: #0c377a;
+ border-radius: 3px;
+}
+.spol_buttons input:hover,
+.spol_buttons input.active{
+ color: white;
+ background-color: #0c377a;
+ border: 1px solid #0c377a;
+}
+
+#arhiv a:link{text-decoration: none; color: #0000bb;}
+#arhiv a:visited{text-decoration: none; color: #0000bb;}
+#arhiv a:active{text-decoration: none; color: #0000bb;}
+#arhiv a:hover{text-decoration: none; color: #6666ff;}
\ No newline at end of file diff --git a/main/survey/skins/glasovanje/Modern.css b/main/survey/skins/glasovanje/Modern.css new file mode 100644 index 0000000..9face9a --- /dev/null +++ b/main/survey/skins/glasovanje/Modern.css @@ -0,0 +1,45 @@ +.glas_settings_title p{
+ padding: 5px 0 !important;
+
+ /*font-size: 14px;
+ font-weight: bold;*/
+}
+
+#graph{
+ width: 340px;
+ height: 2px;
+ background-color: #BBBBBB;
+ border: 1px #888888 solid;
+}
+
+#graph .graph_fill{
+ height: 2px;
+ background-color: #ff0000;
+}
+
+.spol{
+ margin: 20px 0 0 0;
+ font-weight: bold;
+}
+.spol table tr td{
+ vertical-align: bottom;
+}
+.spol_buttons{
+ width: 330px;
+ margin: 10px;
+
+ text-align: center;
+}
+.spol_buttons input{
+ width: 60px;
+ margin: 0 2px 0 2px;
+}
+.spol_buttons input.active{
+ font-weight: bold;
+ color: #bb0000;
+}
+
+#arhiv a:link{text-decoration: none; color: #bb0000;}
+#arhiv a:visited{text-decoration: none; color: #bb0000;}
+#arhiv a:active{text-decoration: none; color: #bb0000;}
+#arhiv a:hover{text-decoration: none; color: #ff5555;}
|