-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalege.css
More file actions
58 lines (49 loc) · 752 Bytes
/
Copy pathalege.css
File metadata and controls
58 lines (49 loc) · 752 Bytes
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
*{
padding:0;
margin: 0;
text-decoration:none;
list-style:none;
box-sizing:border-box;
}
body{
font-family:Arial;
}
nav{
background:#0082e6;
height:80px;
width:100%;
}
.logo{
color:white;
font-size: 35px;
line-height:80px;
padding: 0 10px;
font-weight: bold;
}
nav ul{
float:right;
margin-right:20px;
}
nav ul li{
display:inline-block;
line-height:80px;
margin:0 5px;
}
nav ul li a{
color:white;
font-size:20px;
padding:7px;
border-radius:3px;
border:1px solid;
text-transparent:uppercase;
}
div{
text-align:center;
}
div form select{
padding:3px;
padding-right:100px;
}
div form input{
padding:3px;
}