-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchichi.css
More file actions
100 lines (95 loc) · 1.93 KB
/
chichi.css
File metadata and controls
100 lines (95 loc) · 1.93 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
*{
margin: 0;
font-family: 'Montserrat', sans-serif;
}
a{
text-decoration: none;
color: #000;
}
#logo{
border-bottom: none;
position: relative;
top: 15px;
padding: 0 15px;
margin: 0;
}
#logo img{
width: 80px
}
.nav{
font-family: 'Montserrat', sans-serif;
width: 100%;
/* height: 140px; */
position: fixed;
background-color: whitesmoke;
z-index: 10;
-webkit-box-shadow: 10px 10px 24px -4px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 24px -4px rgba(0,0,0,0.75);
box-shadow: 10px 10px 24px -4px rgba(0,0,0,0.75);;
}
.nav ul li{
font-size: 19px;
color: #000;
display: inline-block;
padding:0 30px;
padding-bottom: 20px;
margin: 0 40px;
/* height: 10px; */
}
.nav ul li:hover{
border-bottom: 3px solid red;
}
.disp-feed a{
color: white;
padding: 9px 30px;
border: 2px solid white;
border-radius: 3px;
}
.disp-feed a:hover{
border: 4px solid white;
}
.main{
position: relative;
top: 50px;
color: white;
text-align: center;
background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('./images/cola.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.give-feed a{
color: white;
padding: 9px 30px;
border: 2px solid white;
border-radius: 3px;
}
.give-feed a:hover{
border: 4px solid white;
}
@media screen and (max-width : 935px) {
.nav{
background-color:coral;
}
.nav ul li{
margin: 0 10px;
padding-left: 15px;
padding-right: 15px;
}
}
@media screen and (max-width : 660px) {
.nav ul li{
display: block;
padding-top: 20px;
}
.nav{
position: static;
box-shadow: none;
}
.nav ul li:hover{
border-bottom: 3px solid white;
}
.main{
position: static;
}
}