-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtwo.css
More file actions
79 lines (68 loc) · 1.1 KB
/
two.css
File metadata and controls
79 lines (68 loc) · 1.1 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
.topnav{
overflow: hidden;
background-color: #e9e9e9;
}
.topnav a{
float: left;
display: block;
text-align: center;
text-decoration: none;
padding: 14px 16px;
font-size: 17px;
color: black;
}
.topnav a:hover{
background-color: #cccccc;
}
.topnav a.active{
background-color: #2196F3;
color: white;
}
.topnav .search-container{
float: right;
font-size: 0;
}
.topnav input{
padding: 8px;
margin-top: 8px;
font-size: 17px;
border: none;
vertical-align: top;
}
.topnav .search-container button{
padding: 8px;
border: none;
margin-top: 8px;
margin-right: 16px;
cursor: pointer;
font-size: 17px;
height: 36px;
}
.topnav .search-container button:hover{
background-color: #cccccc;
}
@media screen and (max-width: 600px){
.topnav .search-container{
float: none;
}
.topnav a,
.topnav input,
.topnav .search-container button{
float: none;
display: block;
text-align: left;
width: 100%;
margin: 0;
padding: 14px;
height: 50px;
}
.topnav input{
border: 1px solid #cccccc;
}
}