forked from MadhushaPrasad/backgroundColorChanger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
126 lines (107 loc) · 1.91 KB
/
index.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #C3BFB3;
font-family: sans-serif;
transition: all 0.5ms ease;
}
header {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.intro-text h1 {
margin-bottom: 20px;
font-size: 50px;
}
.intro-text p {
font-size: 22px;
}
section {
height: 100vh;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
position: relative;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
padding-bottom: 20px;
text-align: center;
}
.otherSec{
height: 100vh;
width: 70%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
position: relative;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
padding-bottom: 20px;
text-align: center;
}
.page02 {
display: flex;
text-align: center;
width: 70%;
align-items: center;
}
.page02 h1 {
margin-bottom: 20px;
font-size: 30px;
font-family: sans-serif;
text-align: center;
}
.page02 p {
font-size: 15px;
}
section img {
width: 70%;
height: 70%;
object-fit: cover;
}
.bg-active {
width: 70%;
background-color: #A68D71 !important;
color: white !important;
}
.bg-active p {
font-size: 15px;
}
.bg-active h1 {
margin-bottom: 20px;
font-size: 30px;
font-family: sans-serif;
text-align: center;
}
.bg-active img {
width: 90% !important;
height: 70% !important;
object-fit: cover !important;
}
section:nth-child(3) h1 {
margin-bottom: 20px;
font-size: 30px;
font-family: sans-serif;
text-align: center;
}
section:nth-child(3) p {
margin-bottom: 20px;
font-size: 15px;
font-family: sans-serif;
text-align: center;
}