-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (66 loc) · 1.41 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
@import url('https://fonts.googleapis.com/css2?family=Barlow&display=swap');
html {
box-sizing: border-box;
}
body {
margin: 0;
font-family: 'Barlow', sans-serif;
}
.accent {
color: purple;
font-weight: bolder;
}
.image-container {
height: 100vh;
width: 100vw;
background-image: url('./unsplash.jpg');
object-fit: cover;
background-position: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
row-gap: 5px;
}
.photo-credit {
padding-top: 10px;
width: 8.5em;
color: black;
background: rgba(255, 255, 255, 0.4);
text-align: center;
}
.photo-credit div {
padding-bottom: 1em;
}
.photo-credit a {
text-decoration: none;
color: black;
}
.button-container {
border: 2px solid black;
padding: 10px;
border-radius: 7px;
box-shadow: inset 0 20px 4px -19px rgba(255, 255, 255, 0.7);
}
button {
cursor: pointer;
outline: none;
width: 120px;
height: 75px;
font-family: 'Barlow', sans-serif;
font-size: 25px;
color: white;
text-shadow: 0 2px 5px black;
background: linear-gradient(to top, #696969, #575757);
border: 2px solid black;
border-radius: 7px;
box-shadow: inset 0 20px 4px -19px rgba(255, 255, 255, 0.4),
0 12px 12px 0 rgba(0, 0, 0, 0.3);
}
button:hover {
background: linear-gradient(to bottom, #696969, #575757);
}
button:active {
transform: translateY(3px);
box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.3);
}