-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.css
More file actions
76 lines (68 loc) · 1.31 KB
/
project.css
File metadata and controls
76 lines (68 loc) · 1.31 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
#project {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#project div {
width: 80%;
}
@media only screen and (min-width: 800px) {
#project h3 {
background: cyan;
padding: 4px 7px;
font-size: 32px;
color: black;
border-top: 2px solid #1d8989;
top: 70px;
position: relative;
height: 63px;
transition: top 0.35s ease-in-out;
box-shadow: -9px 3px 8px 2px black;
}
}
@media only screen and (max-width: 800px) {
#project h3 {
display: flex;
align-items: center;
justify-content: center;
background: cyan;
padding: 4px 7px;
font-size: 32px;
color: black;
border-top: 2px solid #1d8989;
top: 210px;
position: relative;
height: 200px;
transition: top 0.35s ease-in-out;
box-shadow: -9px 3px 8px 2px black;
}
#project p{
height: 200px;
}
}
#project h3:focus,
#project h3:hover {
cursor: pointer;
top: 0;
}
#project p {
background: white;
color: black;
padding: 4px 5px;
box-shadow: -9px 13px 10px 8px black;
display: flex;
align-items: center;
justify-content: center;
}
#project a {
font-size: 20px;
text-decoration: none;
background: #5151f6;
color: white;
padding: 2px 7px;
border-radius: 14px;
}
#project a:hover {
background: #6868fc;
}