forked from janavipandole/Cara
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
84 lines (72 loc) · 1.34 KB
/
about.css
File metadata and controls
84 lines (72 loc) · 1.34 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/* ============================================
ABOUT PAGE SPECIFIC STYLES
============================================ */
#about-head {
background-image: url("images/about/banner.png");
background-size: cover;
background-position: center;
height: 50vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
#about-head h2,
#about-head p {
color: #fff;
text-align: center;
}
#about-head h2 {
font-size: 40px;
font-weight: 700;
}
#about-head p {
font-size: 16px;
margin-top: 10px;
}
#about-details {
display: flex;
align-items: center;
padding: 80px;
gap: 40px;
}
#about-details img {
width: 50%;
height: auto;
border-radius: 8px;
}
#about-details div {
width: 50%;
}
#about-details h2 {
font-size: 40px;
font-weight: 600;
}
#about-details p {
color: var(--text-secondary);
line-height: 1.6;
margin: 15px 0;
}
#about-app {
text-align: center;
padding: 80px 0;
}
#about-app video {
width: 70%;
height: auto;
border-radius: 20px;
margin-top: 30px;
}
@media (max-width: 799px) {
#about-details {
flex-direction: column;
padding: 40px 20px;
}
#about-details img,
#about-details div {
width: 100%;
}
#about-app video {
width: 90%;
}
}