-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
117 lines (109 loc) · 2.15 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
113
114
115
116
117
@import url('https://fonts.googleapis.com/css2?family=Tenali+Ramakrishna&display=swap');
*{
box-sizing: border-box;
margin: 0px;
padding: 0px;
/* font-family: ; */
font-family: "Tenali Ramakrishna", sans-serif;
}
.container{
width: 100vw;
height: 100vh;
background-color: #000000;
}
.navbar{
height: 3rem;
width: 100%;
padding: 2.5rem 8rem;
background-color: #343A40;
font-weight: 500;
}
.navbar ul{
display: flex;
justify-content: space-between;
align-items: center;
height: 100%;
}
.navbar ul li{
list-style-type: none;
font-size: large;
color: white;
font-size: x-large;
}
.navbar ul li a{
color: white;
text-decoration: none;
}
.navbar ul li:hover{
cursor: pointer;
text-decoration: underline;
}
.mainBody{
display: flex;
justify-content: center;
align-items: center;
padding: 2rem 0;
background-color: black;
}
/* .banner{
width: 100%;
height: 90%;
border-radius: 10px;
position: absolute;
top: 0;
z-index: -5;
} */
.mainBodyBox1{
margin-top: 2rem;
background-color: #343A40;
width: 90%;
height: 75vh;
border-radius: 10px;
display: flex;
padding: 1.5rem;
justify-content: space-between;
background: rgb(10,170,149);
background: linear-gradient(180deg, rgba(10,170,149,1) 0%, rgb(250, 168, 73) 0%, rgba(255,255,255,1) 100%);
}
.leftImage img{
width: 36vw;
height: 100%;
border-radius: 10px;
/* margin-right: 2rem; */
}
.btn{
height: 2.5rem;
width: 10rem;
border-radius: 5px;
margin-top: 1rem;
border: 1px solid black;
background-color: #fff;
font-size: 1.3rem;
font-weight: 500;
align-items: center;
}
.btn a{
color: black;
text-decoration: none;
}
.btn:hover{
cursor: pointer;
}
.heading{
/* font-weight: ; */
font-size: 5rem;
text-shadow: #000000;
}
.writing{
color: black;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
font-size: 1.3rem;
}
.content{
margin-left: 5rem;
margin-right: 2rem;
text-align:justify;
}