-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (57 loc) · 1.3 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
body {
font-family: Monaco, sans-serif;
color: darkred;
background-image: linear-gradient(to right, rgb(255, 200, 0), rgb(255, 0, 0));
}
img {
max-width: 13em;
opacity: 0.8;
border-radius: 30%;
}
time {
font-size: 4em;
}
input {
background-color: #8d1111;
border: none;
color: rgb(245, 184, 184);
padding: 15px 20px;
text-align: center;
text-decoration: none;
font-size: 18px;
border-radius: 13px;
font-family: Monaco, sans-serif;
outline: none;
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
button {
background-color: #8d1111;
border: none;
color: rgb(245, 184, 184);
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 18px;
border-radius: 13px;
cursor: pointer;
transition-duration: 0.4s;
font-family: Monaco, sans-serif;
outline: none;
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
button:hover {
background-color: #bb1c1c;
box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
.center {
text-align: center;
margin-left: auto;
margin-right: auto;
}
.stack>*+* {
margin-top: 2rem;
}
.stack-small>*+* {
margin-top: 1rem;
}