-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
66 lines (62 loc) · 1.3 KB
/
Copy pathstyle.css
File metadata and controls
66 lines (62 loc) · 1.3 KB
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body{
background-image: linear-gradient(180deg, rgb(34, 9, 78), rgb(17, 140, 188), rgb(111, 205, 113));
}
.container{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
margin: 40px 20px 0 20px;
}
.container .heading{
width: 50%;
padding-bottom: 50px;
}
.container .heading h3{
font-size: 3em;
font-weight: 800;
padding-bottom: 10px;
border-bottom: 2px solid #fff;
color: #9badff;
}
.container .heading h3 span{
font-weight: 20;
color: #ffffff;
}
.container .box{
display: flex;
flex-direction: row;
justify-content: space-between;
}
.container .box .pics{
display: flex;
flex-direction: column;
width: 31.9%;
}
.container .box .pics img{
width: 100%;
padding-bottom: 25px;
}
@media only screen and (max-width: 769px){
.container .box{
flex-direction: column;
}
.container .box .pics{
width: 100%;
}
}
@media only screen and (max-width: 643px){
.container .heading{
width: 100%;
}
.container .heading h3{
font-size: 2em;
}
}