-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
124 lines (105 loc) · 1.97 KB
/
style.css
File metadata and controls
124 lines (105 loc) · 1.97 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
margin: 0;
font-family:'Rubik', sans-serif;
/* background-color: blanchedalmond; */
}
.wrapper {
height: 100vh;
overflow-y: auto;
overflow-x: hidden;
perspective: 10px;
}
header {
/* border: 1px solid red; */
position: relative;
display: flex;
justify-content: center;
align-items: center;
height: 100%;
transform-style: preserve-3d;
z-index: -1;
}
nav {
/* border: 1px solid red; */
/* display: flex; */
/* justify-content: space-evenly; */
font-size: 1rem;
padding: 5px;
background-color: #333;
color: white;
}
.nav-container{
display:flex;
justify-content: space-evenly;
}
.navbar-name{
/* border: 1px solid red; */
margin: 0px;
}
.navbar-section{
/* border: 1px solid red; */
display: flex;
justify-content:space-evenly;
}
.nav-card{
/* border: 1px solid red; */
margin-left: 3px;
margin-right: 3px;
}
h4{
margin:0;
padding: 0;
}
.container{
display: flex;
flex-direction: row;
}
/* .background {
transform: translateZ(-10px) scale(2);
} */
/* .foreground {
transform: translatez(-3px) scale(1.5);
} */
/* .foreground */
.background {
transform: translateZ(-10px) scale(2);
position: absolute;
height: 100%;
width: 100%;
object-fit: cover;
z-index: -1;
}
.title {
/* border: 1px solid red; */
font-size: 5rem;
color: white;
text-shadow: 0 0 5px black;
margin: 0;
}
section {
/* border: 1px solid red; */
background-color: #333;
padding: 2rem;
text-align: center;
font-size: 2rem;
color: white;
}
.project-container{
/* border: 1px solid red; */
display:flex;
justify-content: space-evenly;
margin-top: 15px;
}
.project-card{
border: 1px solid black;
box-shadow: 0px 0px 30px 5px black;
margin: 3px;
height: 300px;
width: 300px;
}