-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (91 loc) · 2.2 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
/* background-color: black; */
background: rgb(63,94,251);
background: linear-gradient(90deg, #42275a, #4a2c5d, #51305f, #593562, #5f3b64, #664067, #6d456a, #734b6d);
color: aqua;
}
input {
margin: 12px 20px;
padding: 6px 12px;
background-color:transparent;
border-radius: 15px;
font-size: larger;
border: 3px solid #43275a;
box-shadow: #42275a 0px 1px, #593562 0px 3px, #664067 0px 5px, #6d456a 0px 7px, #734b6d 0px 9px;
}
button {
margin: 12px auto;
font-size: medium;
padding: 6px 12px;
border-radius: 15px;
background-color: transparent;
color: black;
border: 3px solid #43275a;
box-shadow: #42275a 0px 1px, #593562 0px 3px, #664067 0px 5px, #6d456a 0px 7px, #734b6d 0px 9px;
}
a {
text-decoration: none;
color: whitesmoke;
}
i {
color: #43275a;
padding: 5px 5px;
}
.card-img,img{
margin: 5px auto;
width: 200px;
border-radius: 50%;
}
.container{
width: 100vw;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.main{
width: 60vw;
min-width: 330px;
text-align: center;
padding: 35px 15px;
}
h1{
font-size:300%;
padding: 10px 10px;
color:hwb(273 2% 81%);
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
.card{
color:whitesmoke;
text-align: center;
width: 25rem;
border:2px solid hwb(273 10% 41%);
background:hwb(272 4% 85%);
box-shadow: 1px 2px 3px #454545;
padding: 10px;
margin: 25px;
border-radius: 10px;
box-shadow: hwb(273 15% 65%) 0px 1px 2px, hwb(273 15% 65%) 0px 2px 4px,hwb(273 15% 65%) 0px 4px 8px, hwb(273 15% 65%) 0px 8px 16px, hwb(273 15% 65%) 0px 16px 32px, hwb(273 15% 65%) 0px 32px 64px;
}
.card-title{
font-size:x-large;
font-weight: bold;
}
.card-subHeading{
font-size: medium;
color: rgb(87, 87, 87);
}
#profileInfo .card{
border: 1px solid hwb(273 15% 65%);
}
#repoInfo{
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin-top: 20px;
}