Going home; wasn't welcome there
[jschessclock.git] / noflex.css
CommitLineData
72b294bb 1body {
2 transform-origin: 0 0;
3 overflow: hidden;
4 text-align: center;
5}
6
7.clock-container {
8 position: relative;
9 width: 650px;
10 margin-left: auto;
11 margin-right: auto;
12}
13
14.flags > div {
15 display: inline-block;
16 visibility: hidden;
17 animation: blinker 1s linear infinite;
18 font-size: 200%;
19 font-family: "DejaVu Sans",FreeSerif,Code2000,"BabelStone Han","Lucida Sans";
20}
21
22#flag-left {
23 position: absolute;
24 top: 35%;
25 z-index: 9999;
26 left: 5%;
27}
28#flag-right {
29 position: absolute;
30 top: 35%;
31 z-index: 9999;
32 right: 5%;
33}
34
35@keyframes blinker {
36 50% { opacity: 0; }
37}
38
39.timers {
40 clear: both;
41 width: 530px; /* 570, -40 for aesthetic reason */
42 position: absolute;
43 top: 50%;
44 z-index: 9999;
45 left: 0;
46 right: 0;
47 margin-left: auto;
48 margin-right: auto;
49}
50
51.timer {
52 font-size: 400%;
53 display: inline-block;
54}
55
56#timer-left {
57 float: left;
58}
59#timer-right {
60 float: right;
61}
62
63.indicators {
64 font-size: 167%;
65 display: inline-block;
66 position: absolute;
67 left: 0;
68 right: 0;
69 margin-left: auto;
70 margin-right: auto;
71}
72
73h1 {
74 text-align: center;
75}
76
77.commands {
78 clear: both;
79 margin: 0 auto;
80 width: 650px;
81 position: absolute;
82 left: 0;
83 right: 0;
84 margin-left: auto;
85 margin-right:auto;
86 bottom: 5%;
87 z-index: 9999;
88}
89
90.cmd {
91 display: inline-block;
92 cursor: pointer;
93 background-color: #FFF;
94 padding: 5px;
95 border: 3px solid #800000;
96 border-radius: 5px;
97}