forked from btwGaurav/webproject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDArkmode.css
More file actions
78 lines (72 loc) · 1.34 KB
/
Copy pathDArkmode.css
File metadata and controls
78 lines (72 loc) · 1.34 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
*{
margin: 0;padding: 0;box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
text-decoration: none;
list-style: none;
}
body{
height: 100vh;
background: rgb(250, 220, 85);
}
.header{
display: flex;
align-items: center;
justify-content: space-around;
padding: % ;
font-size: 18px;
font-weight: 600;
background-color: grey;
}
.header .logo{
font-size: 70px;
transition: 1s all ease ;
}
.header .logo:hover{text-shadow: 0 0 10px blue;
transform: rotate(450deg);
}
.header .Searchbar{
height: 45px;
width: 350px;
border-radius: 5px;
border-style: none;
background: transparent;
border: 2px solid aliceblue;
}
.header .Searchbar::placeholder{
color: aliceblue;
padding-left:40px ;
font-size: 15px;
animation: none;
}
.header ul{
display: flex;
}
.header ul li{
padding-left: 50px;
}
.header ul li:first-child{
padding-left: 0px;
}
.header ul li a{
color: aliceblue;
}
.main{
height: 80%;
display: grid;
place-content: center;
}
.mode{
height: 70px;
width: 190px;
background:white;
place-content: center;
text-align: center;
border-radius: 5px;
border: 5px solid;
border-image: linear-gradient(to right , red ,blue)1;
}
.mode a{
color: black;
font-family: 800;
font-size: 25px;
}