-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
78 lines (65 loc) · 1.02 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
.head img{
border-radius: 50%;
}
h1{
font-size: 100px!important;
}
.blue{
background-color: #525FE1;
}
#yellow{
color: #FFA41B!important;
}
.orange{
color: #F86F03;
}
.white{
color: #FFF6F4;
}
.education{
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: space-around;
}
.card-body{
background-color: #FFF6F4;
flex-shrink: 0;
}
.education > svg{
align-self: center;
width: 32px;
}
.grid-container{
display: grid;
gap: 10px;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(6, 1fr);
height: 300px;
}
.grid-container > div{
text-align: center;
font-size: 20px;
}
.shape{
background-color: #FFF6F4;
padding-top: 5px;
border-radius: 10px;
}
.flex-container{
display: flex;
gap: 10px;
flex-wrap: wrap;
justify-content: center;
}
.decorated{
border: #FFA41B solid 5px;
border-radius: 50px;
}
.orangeb{
background-color: #753a0d;
}
.txtleft{
text-align: left;
color: #FFA41B;
}