forked from Prathamesh7291/40_P.U.L.S.E
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyle Home.css
88 lines (70 loc) · 1.38 KB
/
Style Home.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
*{
box-sizing: border-box;
margin: 0px;
padding: 0px;
background-color: white;
}
body{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#mainlogo{
cursor: pointer;
margin-right: auto;
}
header{
display: flex;
justify-content: flex-end;
align-items: center;
padding: 20px 2%;
}
.navlinks{
list-style-type: none;
}
.navlinks li a{
text-decoration: none;
}
.navlinks li a:hover{
color: rgb(255, 85, 111);
border-bottom: 3px solid rgb(255, 85, 111);
}
.navlinks li a:active{
color: rgb(255, 85, 111);
border-bottom: 3px solid rgb(255, 85, 111);
}
.navlinks li{
display: inline-block;
padding: 10px;
}
header a{
padding: 10px;
}
.login button{
border: none;
border-radius: 4px;
background-color: rgb(255, 85, 111);
color: white;
padding: 10px 20px;
cursor: pointer;
}
.register button{
cursor: pointer;
border: 2px solid rgb(255, 85, 111);
border-radius: 4px;
background-color: white;
color:rgb(255, 85, 111);
padding: 8px 20px;
}
.register button:hover{
background-color: rgb(255, 85, 111);
color: white;
}
.login button:hover{
height: 5%;
color: white;
}
#introbg{
display: flex;
margin: auto;
width: 90%;
align-items: center;
}