-
Notifications
You must be signed in to change notification settings - Fork 0
/
_projects.scss
70 lines (64 loc) · 1.19 KB
/
_projects.scss
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
#projects-page-section {
justify-content: center;
}
.projects-color {
color: $customYellowShadow;
}
.projects-color:hover {
color: $customDarkYellowShadow;
transform: scale(0.8);
}
.projects-background-color {
background-color: $customYellowShadow;
}
.projects-circle-grow {
transform: scale(1) !important;
border-radius: 0% !important;
transition: all 4s ease-in-out;
overflow-y: visible !important;
}
#square {
height: 85vh;
width: 100vw;
text-align: center;
transform: scale(0);
display: flex;
align-items: center;
justify-content: space-around;
font-family: "Dosis", sans-serif;
transition: scale height width 4s ease-in-out;
}
.project {
display: flex;
flex-direction: column;
width: 30%;
height: 100%;
h1 {
font-size: 1.5em;
}
h2 {
font-size: 1em;
}
button {
background-color: $customBlue;
color: $customYellow;
height: 50px;
width: 90px;
border-radius: 5px;
font-size: 100%;
margin: 10px;
border: none;
}
button:hover {
background-color: $customBlueShadow;
cursor: pointer;
transform: scale(0.9);
}
video {
height: 45%;
}
}
.button-wrapper {
display: flex;
justify-content: center;
}