-
Notifications
You must be signed in to change notification settings - Fork 0
/
basic.css
151 lines (134 loc) · 2.46 KB
/
basic.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/* css reset */
*{
margin:0;
padding:0;
font-family: 'Arimo', sans-serif;
}
/* navigation bar */
#navbar{
display:flex;
margin: 0px;
position:sticky;
width:100%;
top:0px;
z-index: 2;
}
nav div img{
width: 82px;
height: 74px;
margin: 0px;
padding: 0px;
}
#navbar ul{
display: flex;
list-style: none;
padding-top: 18px;
padding-left: 18px;
}
#navbar ul a{
text-decoration: none;
padding: 4px 19px;
font-size: 1rem;
color:white
}
#navbar::before{
content: "";
background-color: rgb(0, 0, 0);
position:absolute;
padding: 8px 8px;
border-radius: 11px;
height: 36px;
width: 100%;
z-index: -1;
opacity: 0.6;
}
#navbar ul a:hover{
background-color: rgb(255, 255, 255);
cursor: pointer;
border-radius: 11px;
color: black;
}
#home{
display: flex;
flex-direction: column;
padding: 3px 200px;
height: 315px;
justify-content: center;
align-items: center;
}
#home::before{
content: "";
background: url('./img/tendish.png') no-repeat center center/cover;
position: absolute;
top:0px;
width: 100%;
height: 25rem;
z-index: -2;
opacity: 0.89 ;
}
.h1{
font-family: 'Baloo Bhaina 2', cursive;
font-size: 2.8rem;
}
.btn{
padding: 3px 3px;
margin:12px 5px;
font-family: 'Baloo Bhaina 2', cursive;
border: 2px solid rgb(129, 0, 249);
border-radius: 8px;
background-color: rgb(1 1 0 / 65%);
color:white;
font-size: large;
}
.btn:hover{
background-color: bisque;
color:black;
font-weight: bold;
border:4px solid rgb(129, 0, 249);
}
.sc{
display:flex ;
font-family: 'Baloo Bhaina 2', cursive;
}
.box{
text-align: center;
justify-content: center;
border: 4px solid rgb(98, 71, 231);
border-radius: 11px;
width: 32%;
margin: 0.2rem 0.5rem;
padding: 11px 12px;
position:relative;
background-color: blanchedalmond;
}
.sc img{
width: 252px;
border-radius: 32px;
border: 3px solid brown;
display: block;
margin: 11px auto;
}
#box2 img{
width:22rem;
}
.h2{
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
#oneh{
display: flex;
justify-content: center;
}
#oneh h1{
font-family: 'Baloo Bhaina 2', cursive;
font-size: 40px;
}
.ss{
display: flex;
justify-content: center;
}
.ss img{
margin:10px 45px;
width: 10%;
height: 10%;
border-radius: 32px;
}