-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdesign.css
More file actions
72 lines (59 loc) · 1.13 KB
/
design.css
File metadata and controls
72 lines (59 loc) · 1.13 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
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
body {
background-color: #f4f3ee;
}
section {
width: 85%;
margin: 0 auto;
}
img {
width: 30%;
height: 20%;
margin: 1.6%;
filter: grayscale(100%);
box-shadow: 0.6vmin 0.6vmin 0 #D53A33, 1vmin -0.5vmin 0 #E79C10;
}
img:hover {
filter: none;
cursor: pointer;
}
section {
padding-top: 0;
}
p {
text-transform: uppercase;
width: 8%;
margin: 0 3%;
font-size: 2.9em;
font-family: 'Big Shoulders Display', sans-serif;
font-weight: 700;
padding-top: 3.5%;
padding-bottom: 2%;
color: #1d9099;
text-shadow: 1vmin 1vmin 0 #E79C10, -1vmin -1vmin 0 #D53A33;
transition: color 0.5s ease-out, text-shadow 0.5s ease-out;
}
p:hover {
color: #D53A33;
text-shadow: 1vmin 1vmin 0 #1d9099, -1vmin -1vmin 0 #E79C10;
cursor: pointer;
}
nav button {
display: inline-block;
color: #D53A33;
background-color: #dad7cd;
padding: 6px 13px;
position: relative;
border: 0.5px solid #1d9099;
}
nav button:hover {
background-color: #E79C10;
opacity: 1;
}
#login {
top: -90px;
left: 86%;
}
#signup {
top: -90px;
left: 86%;
}