-
Notifications
You must be signed in to change notification settings - Fork 0
/
indiv_proj.css
148 lines (128 loc) · 2.2 KB
/
indiv_proj.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
/* CSS for indiv_proj.php */
/* Repository details */
/* CSS for indiv_proj.php */
/* Ensure full page height */
/* Navbar*/
.navopt>.on-page-project {
display: flex;
align-items: center;
justify-content: center;
margin: 0px 12px;
padding: 5px 8px;
list-style: none;
border: 2px solid white;
border-radius: 36px;
background-color: white;
}
.navopt>.on-page-project>a {
color: rgb(0, 0, 0);
font-weight: 600;
}
/* Navbar End */
/* Wrapper */
.wrapper {
display: flex;
flex-direction: column;
}
/* Content */
.wrapper {
flex-grow: 1;
padding: 65px;
}
/* Footer */
footer {
flex-shrink: 0;
}
.compcontainer{
margin:auto;
font-family:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",sans-serif;
color:aliceblue;
-webkit-font-smoothing: antialiased;
}
.repo-name {
font-size: 50px;
font-weight: 900;
color:aliceblue;
background-image: url(./Images/purple.jpg);
height: 120px;
padding-top: 70px;
text-align: center;
}
.repo-description {
color: aliceblue;
font-size: larger;
font-weight: 600;
padding-left:20px;
}
/* Contributors */
.contributors-title {
font-size:xx-large;
font-weight: 800;
color:aliceblue;
margin-left:20px;
}
.contributors-list {
list-style-type: none;
padding-left: 50px;
font-size: larger;
font-weight: 500;
}
.contributor {
margin-bottom: 10px;
}
.contributor-name {
font-weight: bold;
}
.contributor-url {
color: aqua;
}
/* Error message */
.error-message {
color: red;
font-weight: bold;
}
a{
text-decoration: none;
color:aquamarine
}
a:hover{
font-weight: 900;
}
@media screen and (max-width: 630px) {
.wrapper {
padding: 25px;
justify-content: center;
align-items: center;
}
.repo-name {
font-size: 34px;
font-weight: 900;
color: aliceblue;
background-image: url(./Images/purple.jpg);
height: auto;
/* padding-top: 70px; */
padding: 1rem 0px;
text-align: center;
margin: 11px 40px;
}
.repo-description {
font-size: 1rem;
width:16rem;
}
a {
font-size: 0.9rem;
}
.compcontainer {
margin: 0px;
display: flex;
flex-direction: column;
align-items: center;
width:21rem;
}
.contributors-title{
font-size:2rem;
}
.contributor{
font-size:1rem;
}
}