-
Notifications
You must be signed in to change notification settings - Fork 48
/
about.css
109 lines (91 loc) · 2.66 KB
/
about.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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
width: 100%;
height: 100vh;
overflow-x: hidden;
background-image: linear-gradient(to left top, #ee3646, #f20066, #eb008a, #d500b0, #ac30d6, #8162f1, #4d81fe, #0099ff, #00bcff, #00d9fe, #00f0c2, #00ff6f);
background-position: center;
background-size:contain;
background-repeat: no-repeat;
}
/* ========================================= Heading section ================================================= */
.heading{
display: block;
margin-bottom: 7vh;
}
.heading h1{
color: rgba(0, 0, 0, 0.7);
position: relative;
top: 4vh;
left: 5vw;
}
/* ============================================= Main About Box ================================================ */
.main{
display: block;
padding-left: 24vw;
margin-bottom: 3vw;
}
.main .about-box{
width: clamp(40vw, 70vw, 70vw);
height: 65vh;
background:rgba(225, 225, 225, 0.1);
padding: 1vw;
border: 0;
border-radius: 5px;
backdrop-filter: blur(100px);
box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.1);
}
.main .about-box .buttons{
display: flex;
justify-content: space-evenly;
align-items: center;
margin-bottom: 2vw;
}
.main .about-box .buttons button{
padding: 4px 10px;
font-size: 16px;
border: 0;
border-radius: 6px;
box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.4);
background: rgba(225, 225, 225, 0.4);
cursor: pointer;
}
/* ============================================ Info Box =============================================== */
.main .about-box .info{
width: 100%;
font-size: 18px;
padding: 0 1vw;
}
/* ===================================== English Box ============================================== */
.main .about-box .info #english{
width: 100%;
height: 58vh;
overflow: auto;
display: flex;
}
/* =========================================== Kannad Box ========================================== */
.main .about-box .info #kannad{
width: 100%;
height: 58vh;
overflow: auto;
display: none;
}
/* ========================================== Others Box ========================================== */
.main .about-box .info #other{
width: 100%;
height: 58vh;
overflow: auto;
display: none;
}
/* ========================================== Scrollbar Settings ======================================== */
::-webkit-scrollbar{width: 5px;}
::-webkit-scrollbar-track{background: rgba(0, 0, 0, 0.2);}
::-webkit-scrollbar-thumb{background: rgba(225, 225, 225, 0.4)}
/* ======================================== Footer ================================================== */
footer{
width: 100%;
}