-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
124 lines (109 loc) · 1.83 KB
/
style.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
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
a {
color: sandybrown;
}
a:hover {
color: gold;
}
nav {
z-index: 99;
background-color: rgb(15, 18, 25);
height: 2rem;
}
body {
width: 100%;
height: 100vh;
margin: 0;
background-color: rgb(15, 18, 25);
color: aliceblue;
font-family: "Courier New", Courier, monospace;
}
label {
display: block;
margin: 0.5rem 0;
}
main {
display: flex;
flex-direction: column;
justify-content: flex-start;
overflow: hidden;
}
.p-layers {
width: 5rem;
display: flex;
flex-direction: column;
justify-content: center;
border: solid white 2px;
}
.container {
display: flex;
flex-flow: row wrap;
}
.circle1 {
background-color: aliceblue;
width: 25rem;
height: 25rem;
border-radius: 50%;
position: absolute;
z-index: -10;
top: 12rem;
left: 2rem;
}
.circle2 {
background-color: rgba(244, 164, 96, 90%);
width: 10rem;
height: 10rem;
border-radius: 50%;
align-self: flex-end;
position: absolute;
z-index: -5;
}
.circle3 {
background-color: rgba(250, 235, 215, 50%);
width: 5rem;
height: 5rem;
border-radius: 50%;
position: absolute;
justify-self: end;
align-self: flex-end;
z-index: 150;
}
.circle4 {
background-color: rgba(244, 96, 96, 90%);
width: 40rem;
height: 40rem;
border-radius: 10% ;
position: absolute;
justify-self: end;
align-self: flex-end;
z-index: -55;
}
.profile-container {
display: flex;
flex-direction: column;
align-items: center;
}
#profile-index {
width: 500px;
height: 500px;
}
#profile-about {
width: 150px;
height: 150px;
}
#profile-portfolio {
width: 150px;
height: 150px;
}
#profile-index,
#profile-about,
#profile-portfolio {
border-bottom: solid saddlebrown 5px;
border-top: solid saddlebrown 5px;
z-index: 99;
}
.proj-container {
justify-self: center;
display: grid;
grid-template-columns: 30% 30% 30%;
gap: 20px;
}