-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.css
79 lines (69 loc) · 1.32 KB
/
base.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
#begin {
display: flex;
align-items: center;
justify-content: center;
width: auto;
height: 300px;
background-size: cover;
background-image: url("images/laptopOutside.jpeg");
}
#topics {
font-size: x-large;
font-weight: bold;
text-align: center;
width: 100%;
}
#featured {
margin-top: 0.5em;
background-color: olivedrab;
color: #ccc;
height: 100%;
}
.flex {
display: flex;
margin-top: 1%;
}
#selection {
margin-left: 1%;
background-color: olivedrab;
color: #ccc;
padding: 2em;
}
.ProjectsFlex {
display: flex;
flex-wrap: wrap;
}
.ProjectsFlex .project {
width: 49%;
margin: 0.5%;
}
.project a {
color: black;
}
.project a:hover {
text-decoration: none;
}
.projectHeader {
text-align: center;
width: 100%;
border-bottom: 0.1em solid olivedrab;
margin-bottom: 0.3em;
}
.projectHeader:hover {
background-color: rgba(107, 132, 35, 0.4);
transform: translateY(-.3rem);
box-shadow: 0 1rem 2rem rgba(0,0,0, .2);
}
.projectHeader:actve, .projectHeader:focus {
/*background-color: rgba(107, 132, 35, 0.4);*/
transform: translateY(-.1rem);
box-shadow: 0 .5rem 2rem rgba(0,0,0, .2);
}
img {
width: inherit;
border: 0.2em solid olivedrab;
}
.tags {
font-style: italic;
color: olivedrab;
}