-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
171 lines (159 loc) · 2.78 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
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
*{
margin: 0;
padding: 0;
}
html{
scroll-behavior: smooth;
}
#navbar{
display:flex;
flex-direction:column;
flex-wrap:wrap;
background-color:rgb(99, 102, 113);
/* position: fixed; */
height: auto;
width: 100%;
}
#logo img{
height: 50px;
margin: 0px 5px 10px 5px;
padding:5px 10px 5px 10px;
display:block;
}
#navbar ul{
margin:0px;
height:65px;
padding:10px;
flex-wrap:wrap;
display: flex;
position:relative;
}
#navbar ul li{
display:flex;
position:relative;
height: 5px;
padding-top:15px;
}
#navbar ul li a{
text-decoration:none;
text-align: right;
color:rgb(241, 233, 233);
display:block;
font-size: 24px;
padding: 4px 30px;
margin:4px;
justify-content: center;
align-items: center;
}
#navbar ul li a:hover{
/* background-color:rgb(126, 114, 114); */
color:rgb(24, 26, 26);
}
#home{
display: flex;
flex-direction: column;
position: relative;
}
#home::before{
content:"";
background-image: linear-gradient(to right, #c9d6eb, #bdddea, #bce2e0, #c8e4d2, #dde3c8);
/* background:url("med2.jpg"); */
background-repeat: no-repeat center center;
background-size: 100%;
position: absolute;
opacity: 0.9;
height: 100%;
width: 100%;
z-index:-1;
}
#home img{
display:flex;
padding-top:5.5rem ;
margin-left: auto;
margin-right: auto;
}
#ser input{
display:flex;
position:relative;
border: 2px solid black;
border-radius:20px;
font-size:18px;
padding:4px 20px;
width: 600px;
height: auto;
margin:auto;
margin-bottom:80px;
}
#login{
/* border:2px solid rgb(123, 145, 159); */
padding-bottom:30px;
display:flex;
justify-content:center;
text-align:center;
position:relative;
height:30px;
border-radius:20px;
}
#login:hover{
/* background-color:black; */
color:white;
}
#deicies{
display:flex;
flex-wrap:wrap;
justify-content:center;
position: relative;
padding:40px;
background-color:rgb(68, 69, 69);
}
.b1{
width:50%;
height:25rem;
border-radius:10px;
border:2px solid black;
padding:3rem ;
display:flex;
margin:2rem;
justify-content:center;
background-color:#adb5b8;
color:black;
box-shadow: 5px 10px #1f1e1e;
}
.item{
position:absolute;
}
.b1 img{
display:flex;
height:23rem;
border-radius:20px;
width:400px;
padding-top:2rem;
}
#can{
width:550px;
}
#dil{
width:600px;
}
.middle{
background-color:black;
color:white;
text-align:center;
padding:3rem 6rem;
}
h2{
font-size:30px;
color:rgb(237, 244, 113);
}
p{
padding:1rem;
font-size:20px;
}
#links{
font-size:16px;
text-decoration:none;
padding:10px;
justify-content:center;
text-align:center;
background-color:black;
}