-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
145 lines (144 loc) · 2.6 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
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@600&display=swap');
body {
margin: 0;
padding: 0;
overflow-x: hidden;
background-color: #141d26;
}
.MainContainer {
text-align: center;
font-family: 'Dosis', sans-serif;
background-color: #141d26;
padding: 40px 0px;
}
.MainContainer h1 {
color: whitesmoke;
margin: 0px;
margin-bottom: 20px;
text-transform: uppercase;
font-family: 'Dosis', sans-serif;
}
.searchSection input {
padding: 15px 20px;
width: 30%;
border: none;
border-radius: 3px;
}
.searchSection button {
padding: 13px 30px;
background-color: whitesmoke;
border: none;
color: #141d26;
border-radius: 2px;
border: 2px solid whitesmoke;
cursor: pointer;
}
.searchSection button:hover {
background-color: #141d26;
border: none;
color: whitesmoke;
transition-duration: 500ms;
border: 2px solid whitesmoke;
border-radius: 2px;
}
.ProfileSection {
color: whitesmoke;
text-align: left;
margin-top: 50px;
width: 100%;
padding: 20px 40px;
display: flex;
justify-content: center;
}
.ProfileSec1 {
width: 400px;
margin-right: 200px;
}
.ProfileSec1 h2 {
display: inline-block;
margin-right: 30px;
}
.ProfileSec1 a {
color: whitesmoke;
text-decoration: none;
margin: 0px 5px;
font-size: 18px;
}
.GithubBTN {
color: white;
padding: 10px 10px;
border-radius: 3px;
background-color: transparent;
border: 2px solid white;
cursor: pointer;
}
.GithubBTN:hover {
background-color: whitesmoke;
color: #141d26;
transition-duration: 500ms;
}
.repoBTN {
color: white;
padding: 5px 8px;
margin-right: 20px;
border-radius: 3px;
background-color: transparent;
border: 2px solid white;
cursor: pointer;
}
.repoBTN:hover {
background-color: whitesmoke;
color: #141d26;
transition-duration: 500ms;
}
.ProfileSec2 {
padding: 0px 10px;
text-align: center;
}
.ProfileSec2 img {
border-radius: 50%;
height: 250px;
width: 250px;
}
.repoList {
margin-top: 30px;
}
.repoItem {
border: 1px solid white;
padding: 0px 20px;
width: 200%;
border-radius: 5px;
margin: 10px 0px;
}
.repoItem h3 {
display: inline-block;
margin-right: 5px;
}
.GithubBTN2 {
color: #141d26;
padding: 5px 20px;
margin-left: 20px;
border-radius: 3px;
background-color: whitesmoke;
border: 2px solid white;
font-size: 10px;
cursor: pointer;
font-weight: bold;
font-size: 16px;
}
@media screen and (max-width: 480px) {
.searchSection input {
width: auto;
}
.ProfileSection {
flex-direction: column;
padding: 30px;
width: 300px;
}
.ProfileSec1 {
width: 300px;
}
.repoItem {
width: auto;
}
}