-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
81 lines (69 loc) · 1.41 KB
/
styles.css
File metadata and controls
81 lines (69 loc) · 1.41 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
73
74
75
76
77
78
79
80
81
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
:root {
--pale-blue: hsl(172, 100%, 80%);
--white: hsl(0, 0%, 100%);
--light-gray: hsl(212, 45%, 89%);
--grayish-blue: hsl(220, 15%, 55%);
--dark-blue: hsl(218, 44%, 22%);
}
* {
box-sizing: border-box;
}
body {
background-color: var(--pale-blue);
font-family: 'Outfit', sans-serif;
}
h1 {
color: var(--dark-blue);
font-weight: 700;
}
.menu {
width: 550px;
margin: 50px auto;
padding: 20px;
background-color: var(--white);
border-radius: 30px;
box-shadow: 10px 20px 30px -8px var(--grayish-blue);
color: var(--grayish-blue);
font-size: 14px;
text-align: center;
}
.card {
width: 350px;
margin: 50px auto;
padding: 20px;
background-color: var(--dark-blue);
border-radius: 30px;
box-shadow: 10px 20px 30px -8px var(--grayish-blue);
color: var(--pale-blue);
font-size: 14px;
text-align: center;
position: relative;
}
.link-spanner {
position:absolute;
width:100%;
height:100%;
top:0;
left: 0;
z-index: 1;
}
.label {
padding: 20px 30px 0 30px;
}
.proj-pic {
width: 100%;
border-radius: 20px;
}
.proj-title {
color: var(--light-gray);
font-size: 20px;
font-weight: 700;
}
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}