-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
126 lines (113 loc) · 2.14 KB
/
index.css
File metadata and controls
126 lines (113 loc) · 2.14 KB
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
:root{
--primary-color:#f2c94c;
--secondry-color:#222;
/* font-family: 'Lato', sans-serif; */
font-family: 'Kalam', cursive;
}
body{
margin: 0;
padding: 0;
box-sizing: border-box;
background: linear-gradient(90deg, rgba(242,201,76,1) 35%, rgba(241,241,241,0.48) 46%, rgba(242,201,76,1) 62%);
color: #fff;
overflow-x: hidden;
overflow-y: auto;
width: 100%;
height:100vh;
/* font-style:'lato'; */
font-style:'Kalam';
}
nav, footer{
height: fit-content;
min-height: 15vh;
width: 100%;
background-color: var(--primary-color) ;
box-sizing: border-box;
text-align: center;
margin: 0px;
}
.nav-div{
font-size: 36px;
color: var(--secondry-color);
padding-top: 30px;
display: inline-block;
}
.main{
width: auto;
height: fit-content;
min-height: 30vh;
margin: 100px 0;
text-align: center;
box-sizing: border-box!important;
}
#output{
width:fit-content;
height:fit-content;
min-width: 50%;
min-height:10vh;
border: 2px solid #fff;
margin: 1rem;
padding: 1rem;
font-size: 28px;
background-color: #f1f1f1 ;
border-radius: 10px;
}
#output{
margin:0 auto;
color: var(--secondry-color);
text-align: justify;
}
h4{
font: 400;
font-size: 22px;
color:#222;
}
.btn-div{
width: 100%;
}
#btn-click{
padding: 1%;
text-align: center;
background-color: var(--primary-color);
border: 1px solid #fff;
font-family: 'Kalam', cursive;
font-size: large;
}
footer{
height: fit-content;
margin: 0;
padding: 10px;
}
.footer-heading{
font-size:36px;
color: var(--secondry-color);
padding-top: 15px;
}
.about-text{
color: var(--secondry-color);
font-size: 26px;
text-align: center;
box-sizing: content-box;
}
@media only screen and (max-width: 1024px) {
.body{
height:150vh !important;
}
nav{
height: fit-content;
min-height: 20vh;
}
footer{
bottom: -700px;
padding: 10px;
}
#output{
width:auto;
height:fit-content;
min-width: 80%;
min-height:20vh;
}
#btn-click{
border: 1px solid #fff;
}
}