-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
45 lines (39 loc) · 1.08 KB
/
styles.css
File metadata and controls
45 lines (39 loc) · 1.08 KB
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
body {
text-shadow: 5px 5px 10px #000000;
color: #ffffff;
font-family: 'Roboto', sans-serif;
}
h1 {
text-align: center;
}
button {
background: linear-gradient(to bottom, rgba(224, 224, 224, 0.5), rgba(179, 179, 179, 0.5));
border: 1px solid rgba(122, 122, 122, 0.5);
border-radius: 10px;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 2px 5px rgba(0, 0, 0, 0.3);
color: #000000;
cursor: pointer;
font-size: 16px;
padding: 10px 20px;
transition: background 0.3s, box-shadow 0.3s;
}
button:hover {
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(198, 198, 198, 0.5));
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 4px 10px rgba(0, 0, 0, 0.5);
}
button:active {
background: linear-gradient(to bottom, rgba(179, 179, 179, 0.5), rgba(224, 224, 224, 0.5));
box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
}
button:focus {
outline: none;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
font-size: 18px;
color: white;
text-align: center;
}