-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
129 lines (124 loc) · 2.08 KB
/
main.css
File metadata and controls
129 lines (124 loc) · 2.08 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
125
126
127
128
129
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root{
--space-cadet: #22223bff;
--ultra-violet: #4a4e69ff;
--rose-quartz: #9a8c98ff;
--pale-dogwood: #c9ada7ff;
--isabelline: #f2e9e4ff;
}
.name {
width: 80%;
}
header {
padding: 0px 10px 10px;
}
footer{
display: flex;
justify-content: center;
align-items: flex-end;
padding: 10px;
flex-shrink: 0;
background-color: var(--ultra-violet);
height: 20vh;
color: var(--space-cadet);
}
#first{
height: 75px;
font-size: 1.5em;
align-items: center;
display: flex;
}
.navbar ul {
display: flex;
justify-content: space-between;
list-style: none;
padding: 0px;
margin: 0px;
gap: 20px;
}
a {
color: black;
text-decoration: none;
}
section{
display: inline-block;
padding: 5px;
flex: 1;
background-color: var(--pale-dogwood);
}
main{
display: flex;
justify-content: space-between;
flex: 1;
}
#pageName {
font-size: 3em;
text-align: center;
}
body{
display: flex;
flex-direction: column;
background-color: var(--isabelline);
font-family: Roboto, sans-serif;
}
html,body{
height: 99.9vh;
margin: 0;
}
p a{
color: var(--ultra-violet);
}
.name{
padding: 10px;
}
@media (max-width: 600px){
main{
flex-direction: column;
}
#first{
flex-direction: column;
text-align: center;
}
.navbar{
margin: 10px;
}
}
.fA{
background-color: var(--pale-dogwood);
}
.sA{
background-color: var(--rose-quartz);
}
.tA{
background-color: var(--ultra-violet);
}
.animated{
animation: textSlide 0.75s ease-in-out forwards;
}
.link{
transform: translateX(-110%);
}
.link a{
color: black;
}
.line{
display: flex;
align-items: center;
}
.box{
overflow: hidden;
margin: 0;
transform: translateX(5px);
padding: 5px;
}
.fa-github{
margin-right: -10px;
}
@keyframes textSlide {
0%{
transform: translateX(-110%);
}
100%{
transform: translateX(0%);
}
}