-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
53 lines (43 loc) · 948 Bytes
/
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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "Poppins", sans-serif;
}
body {
background-image:radial-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(./img.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.box-wrapper {
/* border: 4px solid green; */
text-align: center;
margin: auto 0px;
}
.time-line {
/* border: 4px solid blueviolet; */
display: flex;
justify-content: space-around;
}
.container {
/* border: 2px solid red; */
height: 100vh;
display: flex;
justify-content: center;
}
.same-class{
/* border: 2px solid black; */
color:aliceblue
}
.same-class span {
color: rgb(231, 231, 231);
font-weight: 600;
}
.heading {
/* border: 2px solid cyan; */
margin: 1rem;
font-size: 2.5rem;
color: rgb(205, 182, 50);
}