forked from aitoss/HacktoberFest_2020
-
Notifications
You must be signed in to change notification settings - Fork 0
/
participants.css
108 lines (91 loc) · 1.82 KB
/
participants.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
@import url('https://fonts.googleapis.com/css?family=Montserrat');
* {
box-sizing: border-box;
}
body {
overflow-x: hidden;
text-align: center;
font-family: Montserrat, sans-serif !important ;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: auto;
background: url(https://embed-fastly.wistia.com/deliveries/49bd387c40e2c5aada92abdf973bc46d.webp?image_crop_resized=1980x1080);
}
.outer-div {
margin-left: 2% !important;
}
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;
position: relative;
width: 350px;
max-width: 100%;
text-align: center;
}
.card-container .pro {
border-radius: 3px;
font-size: 14px;
font-weight: bold;
padding: 3px 7px;
position: absolute;
top: 30px;
left: 10px;
}
.card-container .round {
border-radius: 50%;
padding: 7px;
}
.round {
max-height: 150px;
}
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: 12px;
margin: 0 7px 7px 0;
padding: 7px;
}
.h1-title {
text-align: center;
color: white;
font-weight: bold;
}