-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout-us-style.css
61 lines (58 loc) · 1.4 KB
/
about-us-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
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas,
Liberation Mono, monospace !important;
padding: 0;
background: url("./img/bg-pic.jpg") center/cover no-repeat;
}
.about-us {
text-align: center;
/* border: 2px solid black; */
padding: 0.5rem 0rem;
border-radius: 0.4rem;
margin: 1rem;
color: black;
background: linear-gradient(135deg, white, rgb(130, 128, 128));
}
.main {
display: flex;
justify-content: space-evenly;
align-items: center;
/* border: 2px solid white; */
height: 80%;
}
.item {
/* background-color: transparent 30%; */
color: black;
border: 2px solid black;
border-radius: 0.4rem;
text-align: center;
margin: 1rem;
padding: 1rem;
background: linear-gradient(135deg, white, rgb(130, 128, 128));
width: 25rem;
height: 20rem;
display: flex;
justify-content: center;
align-items: center;
}
.fa-instagram {
/* Set the background color */
background: linear-gradient(to right, #ff8a00 0%, #dd4c4f 100%);
/* Mask the color to the text, and remove the rest */
-webkit-background-clip: text;
/* Make the text fill color value transparent so the masked background color comes through */
-webkit-text-fill-color: transparent;
}
.fa-linkedin-in {
color: #0077b5;
}
.fa-github {
color: black;
}
i {
font-size: 2rem;
}