-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub.css
121 lines (105 loc) · 1.79 KB
/
github.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
@import url('https://fonts.googleapis.com/css?family=Montserrat');
* {
box-sizing: border-box;
}
body {
background-color: #28223F;
font-family: Montserrat, sans-serif;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
min-height: 100vh;
margin: 0;
}
main{
margin-bottom: 0px;
}
.cards-box {
display: flex;
flex-wrap: wrap;
margin: 0 auto;
justify-content: center;
margin-bottom: 100px;
padding-top: 100px;
}
.language {
font-size: 1.3em;
/* color: Tomato; */
}
h3 {
margin: 10px 0;
}
h6 {
margin: 5px 0;
text-transform: uppercase;
}
p {
font-size: 14px;
line-height: 21px;
}
.card-container {
background-color: #231E39;
border-radius: 5px;
box-shadow: 0px 10px 20px -10px rgba(0,0,0,0.75);
color: #B3B8CD;
padding-top: 30px;
position: relative;
width: 350px;
max-width: 100%;
margin: 10px;
text-align: center;
padding-bottom: 10px;
}
.card-container .pro {
color: #231E39;
background-color: #FEBB0B;
border-radius: 3px;
font-size: 14px;
font-weight: bold;
padding: 3px 7px;
position: absolute;
top: 30px;
left: 30px;
}
.card-container .round {
border: 1px solid #03BFCB;
border-radius: 50%;
padding: 7px;
height: 100px;
}
button.primary {
background-color: #03BFCB;
border: 1px solid #03BFCB;
border-radius: 3px;
color: #231E39;
font-family: Montserrat, sans-serif;
font-weight: 500;
padding: 10px 25px;
}
button.primary.ghost {
background-color: transparent;
color: #02899C;
}
.skills {
background-color: #1F1A36;
text-align: left;
padding: 15px;
margin-top: 30px;
}
.skills ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.skills ul li {
border: 1px solid #2D2747;
border-radius: 2px;
display: inline-block;
font-size: 1.3rem;
margin: 0 7px 7px 0;
padding: 7px;
}
.skillUl li{
font-size: 5rem;
}