-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathinternships.css
More file actions
50 lines (50 loc) · 763 Bytes
/
internships.css
File metadata and controls
50 lines (50 loc) · 763 Bytes
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
body{
font-family: "Nunito", sans-serif;
}
h1{
font-family: "Lobster", sans-serif;
text-align: center;
text-decoration: underline;
}
.card{
margin: 10% 0;
border: 2px solid #aaa;
border-radius: 5px;
box-shadow: 2px 2px 10px #aaa;
transition: box-shadow 0.7s;
}
.card:hover{
box-shadow: 5px 5px 50px rgba(24, 44, 97,0.2);
transition: box-shadow 0.7s;
}
img#one{
z-index: -1;
position: fixed;
opacity: 0.4;
top: 8rem;
left: 30rem;
width: 15vh;
}
img#two{
position: fixed;
opacity: 0.7;
width: 10rem;
bottom: 0;
right: 0;
z-index: -1;
}
img#three{
position: fixed;
width: 20rem;
opacity: 0.4;
padding: 0 0;
z-index: -1;
}
img#four{
position: fixed;
width: 10rem;
right: 10rem;
bottom: 10rem;
z-index: -1;
opacity: 0.5;
}