-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (88 loc) · 1.65 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
height: 100vh;
background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('orsrc62739.jpg');
background-repeat: no-repeat;
background-size: 150% 100%;
color: #fff;
text-align: center;
padding: 20% 10px;
font-family: san-serif;
}
img {
width: 100%;
}
h1.time h2.date {
font-family: monospace;
font-weight: lighter;
}
h1.time {
font-family: monospace;
font-size: 5.8rem;
font-weight: 100;
}
h2.date {
font-family: monospace;
font-size: 1.1rem;
font-weight: lighter;
}
svg {
fill: #fff;
}
div.print {
position: fixed;
bottom: 10px;
right: 50%;
transform: translate(50%,-50%);
padding: 9px;
background: rgba(255,255,255,0.5);
border-radius: 50%;
transition: 1s;
}
div.print:hover svg.bx-print {
animation-name: burst;
}
div.print:hover {
background: #00af11;
}
.notification {
margin-top: 30px;
}
.notification > div {
background: #fff;
color: #000;
text-transform: uppercase;
border-radius: 5px;
padding: 5px;
margin: 5px;
}
.notification > div div:first-child {
display: grid;
grid-template-columns: 25px 1fr;
justify-content: center;
align-items: center;
}
.notification > div div:first-child p {
text-align: left;
}
.notification > div div:last-child p {
text-align: center;
text-transform: none;
font-size: 1rem;
}
.notification > div div:last-child img {
border-radius: 5px;
}
.notification > div div:last-child {
display: grid;
grid-template-columns: 70px 1fr;
justify-content: center;
align-items: center;
}
.notification > div div:last-child img {
background: #000;
}