-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
76 lines (66 loc) · 1.38 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
@font-face {
font-family: AmazonEmber;
src: url(./assets/AmazonEmber_Rg.ttf) format('truetype');
}
@font-face {
font-family: AmazonEmber;
src: url(./assets/AmazonEmber_Bd.ttf) format('truetype');
font-weight: bold;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0 auto;
padding: 0;
background-color: #232f3e;
color: #fff;
text-align: center;
font-family: AmazonEmber, Helvetica, Arial, sans-serif;
}
div {
margin-bottom: 1rem;
}
.buttons {
display: flex;
justify-content: center;
}
h1 {
font-family: AmazonEmber;
font-weight: bold;
cursor: pointer;
}
#logo {
height: 5rem;
position: absolute;
top: 20px;
left: 20px;
}
#title,
#time {
margin-bottom: 1rem;
font-size: 6rem;
}
[contenteditable] {
outline: 0px solid transparent;
}
button {
cursor: pointer;
background-color: #ec7211;
border: 2px solid #ec7211;
height: 5rem;
width: 10rem;
border-radius: 5rem;
color: #fff;
font-family: AmazonEmber, Helvetica, Arial, sans-serif;
font-size: 2rem;
font-weight: bold;
text-shadow: rgba(0, 0, 0, .05) 0 1px 0;
padding: 5px 20px;
margin: 0rem 1rem;
}
button:hover {
background-color: #eb5f07;
border: 2px solid #eb5f07;
}