-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject-one-styles.css
136 lines (112 loc) · 2.34 KB
/
project-one-styles.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.navbar {
background-color: var(--oxford-blue);
min-height: 70px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 24px;
position: fixed;
top: 0;
width: 100%;
border-bottom: 2px solid var(--salmon);
}
header {
margin-top: 5rem;
}
header h1 {
text-shadow: 2px 2px 4px var(--dusty-gray);
}
header h1, p {
text-align: center;
}
#ant-eater {
width: 75px;
fill: var(--salmon);
}
.nav-menu a {
color: var(--salmon);
}
.picture-boxes {
display: flex;
flex-direction: column;
margin: var(--margin) 0;
}
.project-overview {
display: flex;
flex-direction: column;
align-items: start;
padding: var(--padding);
background-color: var(--athens-gray);
width: 100%;
margin: var(--margin) 0;
box-shadow: 2px 2px 10px var(--oxford-blue);
}
.project-overview p {
text-align: start;
margin: var(--margin) 0;
font-size: 0.9rem;
}
.project-overview a {
color: var(--oxford-blue);
align-self: center;
text-decoration: none;
border: 2px solid var(--oxford-blue);
border-radius: 0.5rem;
box-shadow: 2px 2px 4px var(--dusty-gray);
text-shadow: 2px 2px 3px var(--dusty-gray);
padding: 0.5rem;
}
.project-overview a:hover {
color: var(--salmon);
background-color: var(--oxford-blue);
}
.picture-box {
display: flex;
flex-direction: column;
padding: var(--padding);
border: 1px solid var(--oxford-blue);
box-shadow: 2px 2px 10px var(--oxford-blue);
margin: var(--margin);
background-color: var(--athens-gray);
align-items: center;
text-align: center;
min-width: 20rem;
}
.picture-box img {
min-width: 50px;
border: 2px solid var(--oxford-blue);
border-radius: 1rem;
}
#contact-screenshot {
max-width: 350px;
}
footer {
border-top: 2px solid var(--oxford-blue);
background-color: var(--athens-gray);
display: block;
padding: var(--padding);
}
.footnote {
text-align: center;
font-size: 0.8rem;
opacity: 0.6;
margin-top: var(--margin);
}
.highlight {
color: var(--salmon);
font-weight: 600;
}
@media(min-width:900px) {
.picture-boxes {
max-width: 700px;
margin: 1rem auto;
}
.project-overview p {
font-size: 1rem;
}
}