-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
139 lines (123 loc) · 2.27 KB
/
style.css
File metadata and controls
139 lines (123 loc) · 2.27 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
130
131
132
133
134
135
136
137
138
139
@keyframes whale {
0% {margin-top: 1000px; transform:rotate(-270deg);}
60% {margin-top:-30px; transform:rotate(0deg);}
100% {margin-top: 0px; }
}
@keyframes logo-words{
0% {opacity:0;}
70% {opacity:0;}
100% {opacity:1;}
}
@keyframes buttons{
0% {background-color:inherit; color:rgba(0,0,0,0);}
70% {background-color:inherit; color:rgba(0,0,0,0);}
100% {background-color:#78D5D7; color:white;}
}
@keyframes wrapper-color{
0%{background-color:#016FB9;}
100%{background-color:#22AED1;}
}
.sub-container{
height:100px;
width:100%;
margin:10px 10px;
}
#logo-words{
animation: logo-words 4.25s forwards;
}
body{
background-color:#016FB9;
}
h1{
font-family: 'Montserrat', sans-serif;
}
#logo{
max-height:60%;
max-width:100%;
animation: whale 3.75s forwards;
}
.pic-link{
max-width: 50%;
max-height:100px;
}
#github-logo{
max-height:100px;
}
#npm-logo{
max-height:100px;
filter:grayscale(100%);
}
#npm-logo:hover{
transition: filter .3s;
filter:grayscale(0%);
cursor:pointer;
}
#github-logo:hover{
transition:filter .3s;
filter:invert(50%) ;
cursor:pointer;
}
#wrapper{
animation:wrapper-color 4.25s forwards;
margin-top:60px;
display:flex;
flex-direction: column;
align-items:center;
background-color: #22AED1;
border-radius:25px;
max-width:60%;
}
#sc1{
/* border: 1px solid blue; */
display:flex;
justify-content: center;
align-items:center;
flex-direction:column;
height:45vh;
}
hr{
border:1px solid rgba(0,0,0,.2);
width:70%;
}
#sc2{
/* border: 10px solid green; */
animation: logo-words 4.25s forwards;
display:flex;
justify-content: space-around;
align-items:center;
width:70%;
}
#sc3{
/* border: 1px solid red; */
display:flex;
justify-content: space-around;
align-items:center;
}
.btn-primary{
animation: buttons 4.25s forwards;
width:25%;
background-color: #78D5D7;
border-color:rgba(0,0,0,0);
transition:.3s all;
}
.btn-primary:hover{
background-color:rgba(0,0,0,.5);
border-color:#016FB9;
border-radius:50px;
border-width: 2.5px;
}
.modal-content{
margin-top:200px;
}
#git-cards{
margin-top:200px;
}
#github-cards{
display:flex;
align-items:center;
justify-content:center;
flex-flow:column wrap;
}
.gh-profile-card{
margin-bottom:10px;
}