-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (55 loc) · 882 Bytes
/
style.css
File metadata and controls
64 lines (55 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#header{
margin: 0px;
background-color: green;
height:50px;
color: white;
text-align: center;
padding-top: 10px;
font-size: 30px;
}
#side-column{
width:250px;
height:635px;
border-right: 1px #CCCCCC solid;
float:left;
}
.analog-clock{
width:150px;
height:200px;
margin:30px 50px;
padding:0;
font-family:sans-serif;
font-size:14px;
}
#clock-face{
stroke:black;
stroke-width:2px;
fill:white;
}
#s-hand, #s-tail{
stroke:black;
stroke-linecap:round;
stroke-width:1px;
transition-property: transform;
transition-duration: 1s;
transition-timing-function: linear;
}
.digital-clock{
text-align: center;
padding-top: 30px;
}
#sec{
font-size: 30px;
}
#status{
text-align: center;
color: blue;
margin-top: 100px;
font-size: 40px;
}
#game-zone{
float:left;
margin-left: 10px;
width:1200px;
height:635px;
}