-
Notifications
You must be signed in to change notification settings - Fork 0
/
addProjectstyle.css
53 lines (47 loc) · 1009 Bytes
/
addProjectstyle.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
* {
box-sizing: border-box;
}
body {
margin: 0;
background-color: black;
}
header {
text-align: center;
font-family: "Courier New" ,sans-serif;
font-size: 20px;
color: lightgray;
text-shadow: 6px 6px 32px rgba(255,255,255,0.6);
}
nav {
background-image: url("workinpro.gif");
background-size: cover;
display: flex;
justify-content: center;
height: 60vh;
width: 50vw;
margin-left: 500px;
}
@media screen and (max-width: 640px) {
* {
box-sizing: border-box;
}
header {
text-align: center;
font-family: "Courier New", sans-serif;
font-size: 10px;
color: lightgray;
text-shadow: 6px 6px 32px rgba(255, 255, 255, 0.6);
}
nav {
background-image: url("workinpro.gif");
background-size: cover;
display: flex;
justify-content: center;
height: 40vh;
width: 100vw;
margin-left: 5px;
}
img {
display: none;
}
}