-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
151 lines (130 loc) · 2.12 KB
/
index.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
.top{
background-color: white;
height:165px; /*pura header*/
}
body{
background-color: #27A35F ;
}
.first{
display:flex;
align-items: center;
margin-bottom: 0px;
}
#signup{
float: right;
margin-top: -70px;
margin-left: 380px;
font-size: 20px;
height:30px;
background-color: #27A35F;
color: white;
border:none;
border-radius: 10%;
}
#login{
float: right;
margin-top: -70px;
margin-left: 10px;
font-size: 20px;
height: 30px;
background-color: #27A35F;
color: white;
border:none;
border-radius: 10%;
}
.first form{
margin-left: 300px;
margin-top: -120px;
}
.second li{
display:inline-block;
padding-left: 40px;
font-size: 25px;
font-family: 'Corinthia', cursive;
font-family: 'Great Vibes', cursive;
font-family: 'Grenze', serif;
font-family: 'Island Moments', cursive;
font-family: 'Pacifico', cursive;
font-family: 'The Nautigal', cursive;
}
.second li::after{
content:'';
width: 0%;
height: 2px;
background: #27A35F;
display:block;
margin: auto;
transition: 0.5s;
}
.second li:hover::after{
width: 100%;
}
.second{
margin-left:400px;
margin-top: -100px;
}
form input[type="text"]{
width: 300px;
font-size: 23px;
height: 40px;
border:none;
background-color: #EAEDED;
text-align: center;
}
form button{
font-size: 23px;
background-color: #27A35F;
color: white;
width: 110px;
height: 40px;
border:none;
border-radius: 10%;
}
.first img{
flex: 0 0 150px;
width:250px;
margin-top: -45px;
}
.second a{
text-decoration: none;
color: black;
}
.second a:hover{
text-decoration: underline;
color: green;
}
/*Sidebar*/
.sidebar{
position:relative;
background-color: white;
width: 300px;
margin-right: -300px;
height:320px;
padding-top: 50px;
}
.sidebar h2{
background-color: #0B5E30 ;
color: white;
}
.sidebar a{
text-decoration: none;
color: black;
font-size: 25px;
width: 283px;
height:50px;
transition: all 0.5s ease;
display: block;
padding-left: 17px;
}
.sidebar a:hover{
background-color: #0B5E30;
color:white;
}
.sidebar ul{
list-style-type: none;
padding-left: 0px;
}
.full{
display: flex;
margin-top: 30px;
}