-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
56 lines (48 loc) · 1.03 KB
/
style.css
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
@keyframes color {
0% { background: #33CCCC; }
20% { background: #33CC36; }
40% { background: #B8CC33; }
60% { background: #FCCA00; }
80% { background: #33CC36; }
100% { background: #33CCCC; }
}
body {
background: #33CCCC; /* Fallback */
animation: color 9s infinite linear;
text-align: center;
padding: 2em;
font-family: 'Kavoon', sans-serif;
}
#clock {
font-size: 35px;
color: rgb(255, 0, 170);
width: 800px;
margin: 170px;
margin-left: 260px;
margin-top: 250px;
text-align: center;
border: 2px solid rgb(76, 230, 4);
border-radius: 20px;
background-color: black;
background-image: url('bgimg.jpg');
}
.brand {
display: flex;
align-items: right;
font-weight: bolder;
margin-left: 5px;
font-size: rem;
}
.main-nav {
margin-top: 5px;
}
.footer {
position:fixed;
bottom:0;
left:0;
width:100%;
height: 60px;
background-color: black;
color: red;
font-size:10px;
}