-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (83 loc) · 1.57 KB
/
style.css
File metadata and controls
103 lines (83 loc) · 1.57 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
/* color: rgb(212,212,212); */
overflow-x: auto;
}
.container{
width: 100vw;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.main{
width: 60vw;
min-width: 330px;
text-align: center;
padding: 150px 10px 0 10px;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.main h1{
color: rgb(139, 139, 139);
}
input,button{
margin: 12px auto;
padding: 6px 12px;
}
button{
background-color: rgb(51,143,255);
border: none;
color: white;
font-size: 14px;
font-weight: bold;
cursor: pointer;
}
a{
color: inherit;
text-decoration: none;
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.card{
width: 24rem;
box-shadow: 1px 3px 5px rgb(123, 121, 121);
padding: 12px;
margin: 20px;
}
.card-img,img{
margin: 5px auto;
width: 200px;
border-radius: 50%;
}
.card-title{
font-size: 18px;
font: bold;
font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.card-subHeading{
font-size: 14px;
color: rgb(87,87,87);
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
#reposInfo{
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin-top: 20px;
border-top:1px solid rgb(216, 215, 215);
box-shadow: 1px 3px 5px black;
}
@media screen and (max-width:600px){
.main{
width: 100vw;
}
.card{
width:20rem;
}
.main h1{
font-size: 1.8rem;
}
}