-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (70 loc) · 1.34 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
html {
font-family: 'Cascadia Code', 'Ubuntu';
background-color: #131516;
color: azure;
text-align: center;
}
body {
background-image: url(background1.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
margin: 0;
}
#clock-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
#clock {
/* font-family: ; */
font-size: 6.5rem;
font-weight: bold;
text-align: center;
/* color: wheat; */
backdrop-filter: blur(1.5px);
background-color: hsla(219, 79%, 66%, 0.2);
width: 100%;
}
button[type='github'] {
font-family: 'ubuntu';
font-size: 14px;
vertical-align: middle;
padding: 3px 8px;
background-color: #4caf50;
color: #fff;
border: none;
border-radius: 7px;
cursor: pointer;
transition: background-color 0.4s ease;
transform: scale(1);
transition: all 1s ease;
}
button[type='github']:hover {
transition: background-color 0.9s ease;
background-color: #af4c9d;
transform: scale(1.1);
transition: all 1s ease;
}
button[type='github']:active {
background-color: hsla(199, 80%, 90%, 0.86);
}
.footer {
background-color: #303030;
color: #fff;
clear: both;
font-family: 'ubuntu';
text-align: center;
position: fixed;
bottom: 0;
right: 0;
left: 0;
bottom: 0;
border-width: 30%;
}
.img00 {
vertical-align: middle;
width: 22px;
}