-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (43 loc) · 702 Bytes
/
style.css
File metadata and controls
43 lines (43 loc) · 702 Bytes
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
body {
font-family: "poppins";
font-size: 16px;
padding: 0;
align-items: center;
margin: 20px;
}
.left-align {
text-align: left;
}
.right-align {
text-align: right;
}
.center-align {
align-items: center;
text-align: center;
width: 700px;
padding: 0%;
margin: 0%;
}
.flex-container {
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
align-content: center;
flex-wrap: wrap;
}
.flex-items {
width: 100%;
height: 100%;
background-color: #f1f1f1;
border: 1px solid black;
text-align: center;
}
.know-more {
padding: 10;
color: white;
padding: 10px 20px;
border-radius: 20px;
border: none;
font-weight: bold;
}