-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAbout.css
52 lines (51 loc) · 1014 Bytes
/
About.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
*{
box-sizing: border-box;
padding: 0;
margin: 0;
}
body{
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
display: grid;
background-color: #f4f4f4;
align-content: center;
min-height: 100vh;
}
section{
display: grid;
grid-template-columns: 1fr 1fr;
min-height: 90vh;
width: 85vw;
margin: 0 auto;
}
.image
{
background: url(img/Digital.jpg) center/cover no-repeat;
}
.content{
background: #fff;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.content h2{
text-transform: uppercase;
font-size: 36px;
letter-spacing: 6px;
opacity: 0.9;
}
.content span{
height: 0.5px;
width: 80px;
background: #777;
margin: 30px 0;
}
.content p{
padding-bottom: 15px;
font-weight: 300;
opacity: 0.7;
width: 60%;
text-align: center;
margin: 0 auto;
line-height: 1.7;
}