-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (96 loc) · 2.02 KB
/
style.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
body {
min-height: 100vh;
width: 100vw;
margin: 0;
padding: 0;
background-image: url(assets/Bg.png);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
overflow-x: hidden;
}
.navbar-brand {
color: #FFF;
text-align: center;
font-family: Abril Fatface;
font-size: 90px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.navbar-brand:hover {
color: #FFF
}
.title span:nth-child(1){
color: #FFF;
font-family: Abyssinica SIL;
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.title span:nth-last-child(1){
color: #FFF;
font-family: Poppins;
font-size: 20px;
font-style: italic;
font-weight: 400;
line-height: normal;
}
.mainCont {
/* background-color: aqua; */
height: 100%;
width: 100%;
display: flex;
justify-content: center;
}
.calCont {
box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(182, 181, 181, 0.22) 0px 15px 12px;}
.calHeader {
/* background-color: bisque; */
display: flex;
flex-direction: column;
align-items: center;
height: 60px;
}
.calHeader span {
color: #000;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 30px;
font-weight: 500;
}
.cont {
/* background-color: red; */
width: 100%;
display: flex;
justify-content: center;
gap: 5%;
}
.form {
/* background: #D9D9D9; */
margin-top: 5%;
width: 50%;
height: 200px;
flex-shrink: 0;
display: flex;
flex-direction: column;
gap: 5%;
}
.imgCont img{
width: 435px;
height: 642px;
}
.sideCont{
margin-left: -30px;
}
.sideCont h5 {
box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}
@media (max-width: 768px) {
.navbar-brand {
font-size: 70px;
}
.title span:nth-child(1){
font-size: 30px;
}
}