-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
79 lines (66 loc) · 1.21 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
body {
font-family: 'Mukta', sans-serif;
}
#body-main {
display: flex;
flex-direction: column;
width: 100%
}
#logo {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
#logo-img {
display: none;
}
#jumbotron {
display: flex;
justify-content: center;
align-items: center;
}
#title-jumbotron {
font-size: 60px;
text-align: "center";
color: #2d81c1;
}
#carousel-row {
margin-top: 30px;
display: flex;
flex-direction: row;
justify-content: center;
align-content: center;
}
@media (max-width: 800px) {
#carousel-row {
flex-direction: column;
}
}
#cta-body {
display: flex;
flex-direction: row;
justify-content: center;
text-align: center;
}
#cta-input {
height: 50px;
width: 300px;
border-color: #2d81c1;
border-width: 2px;
border-style: solid;
border-radius: 5px;
padding-left: 15px;
}
#cta-button {
display: flex;
color: white;
align-items: center;
justify-content: center;
height: 55px;
width: 100px;
background-color: #2d81c1;
border-radius: 5px;
margin-left: 5px;
border: 0;
}