-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
196 lines (162 loc) · 2.94 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
body{
background-color: #18191A;
color: #B8BBBF;
font-family: 'Quicksand', sans-serif;
}
body li{
list-style-type: none;
}
#loading{
width: 80px;
height: 80px;
border: 10px solid #B8BBBF;
border-top-color: rgb(0, 255, 115);
position: fixed;
margin: auto;
top: 0;
left: 0;
bottom: 0;
right: 0;
border-radius: 50%;
animation: go-round 1s linear infinite;
}
#repos ul{
position: relative;
}
#loading_repos{
width: 30px;
height: 30px;
border: 5px solid #B8BBBF;
border-top-color: rgb(0, 255, 115);
border-radius: 50%;
text-align: center;
animation: go-round 1s linear infinite;
margin:30px 0;
}
@keyframes go-round{
from{transform: rotate(0deg)}
to{transform: rotate(360deg);}
}
.other{
justify-content: center;
display: flex;
flex-flow: wrap;
}
#profile{
text-align: center;
margin: 20px 0;
}
#profile #photo img{
border-radius: 50%;
width: 200px;
box-shadow: 0px 0px 27px 2px rgba(0,0,0,0.75);
}
#profile #name p{
font-size: 30px;
margin: 10px 0;
padding: 0;
}
hr{
border: 0;
border-top: 1px solid rgb(70, 71, 71);
}
body .main a{
text-decoration: none;
color: rgb(36, 196, 196);
transition: 0.1s;
}
body .main a:hover{
transition: 0.1s;
}
.tab{
background-color: #232425;
padding: 15px;
border-radius: 8px;
margin: 20px 0;
width: 50%;
box-shadow: 0px 0px 14px -2px rgba(0,0,0,0.75);
}
.tab .title{
font-weight: bold;
font-size: 20px;
}
.tab .content ul li{
background-color: #3A3B3C;
padding: 10px;
border-radius: 5px;
color: white;
margin: 5px 0;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.tab .content ul li span{
padding: 0;
color: #B8BBBF;
margin: 0;
font-weight: 600;
}
.tab .content ul li i{
margin-right: 8px;
}
#about ul li a:hover{
text-decoration:underline;
}
#repos ul li i{
color:#EA722C;
}
#repos ul li a:hover{
color: #B8BBBF;
}
#repos ul li{
flex-direction: column !important;
}
#repos ul li span{
margin-bottom: 15px;
}
#social ul li a{
color: #B8BBBF;
}
#social ul li a:hover{
color: rgb(36, 196, 196);
}
#navigation{
display: flex;
justify-content: space-between;
}
#navigation a{
padding: 5px 8px;
background-color:#3A3B3C;
border-radius: 3px;
}
.btn-disable{
cursor: no-drop !important;
pointer-events: none !important;
background-color: rgb(133, 133, 133) !important;
}
@media screen and (max-width:900px){
.tab{
width:70%;
}
}
@media screen and (max-width:700px){
.tab{
width:95%;
}
.tab .content ul{
padding: 0;
}
#loading{
width: 40px;
height: 40px;
border-width: 5px;
}
}
@media screen and (max-width:400px){
#about ul li{
flex-direction: column;
}
#about ul li span{
margin-bottom: 15px;
}
}