-
Notifications
You must be signed in to change notification settings - Fork 0
/
calicut.css
86 lines (85 loc) · 1.63 KB
/
calicut.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
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
85
86
* {
margin: 0px;
padding: 5px;
}
.hd {
height: 100vh;
}
.navbar-style {
background-color: oldlace;
box-shadow: 0 5px 10px #efefef;
}
.logo {
height: 65px;
padding: 0px 10px;
}
.icon-bar {
background: rgb(3, 180, 33);
}
li a {
color: black;
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
li a:hover {
color: rgb(3, 180, 33);
}
body {
overflow-x: hidden;
font-family: "PT Sans", sans-serif;
}
.section-container {
--bs-gutter-x: 1.5rem;
--bs-gutter-y: 0;
display: flex;
flex-wrap: wrap;
}
.section-container .columns {
flex: 0 0 auto;
width: 50%;
}
.section-container .columns.image {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.section-container .columns.content .content-container {
padding: 40px 50px;
}
.section-container .columns.content .content-container h5 {
font-weight: 700;
font-size: 25px;
margin-bottom: 20px;
}
.section-container .columns.content .content-container p {
font-weight: 400;
font-size: 16px;
margin-bottom: 20px;
margin-bottom: 15px;
text-align: justify;
}
@media screen and (max-width: 767px) {
.section-container {
flex-flow: row wrap;
}
.section-container .columns.image {
display: block;
order: 1;
width: 100%;
height: 250px;
}
.section-container .columns.content {
display: block;
order: 2;
width: 100%;
}
.section-container .columns.content .content-container {
padding: 20px 35px;
}
.section-container .columns.content .content-container h5 {
margin-bottom: 5px;
}
}
h2 {
margin-left: 35px;
}