blob: 93783f83b0ec71be37b8eae75e3c1e4a3407eab6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
body {
margin: 0;
padding: 0;
}
#app {
width: 600px;
height: 800px;
border: 0;
display: grid;
}
#clock {
font-size: 72px;
width: 100%;
text-align: center;
background: #eee;
}
|