-
Notifications
You must be signed in to change notification settings - Fork 0
/
group_css.css
103 lines (103 loc) · 1.72 KB
/
group_css.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
*{
margin:0px;
padding:0px;
font-family: Catull;
}
body{
background-color: rgb(233,234,237);
}
.header{
background-color: rgb(70,120,180);
height: 60px;
border-bottom: 0px;
padding-left: auto;
padding-right: auto;
width: 100%;
position: fixed;
z-index: 2;
}
#wrapper{
margin-left: auto;
margin-right: auto;
width: 1000px;
padding-top: 0px;
padding-bottom: 0px;
position: fixed;
}
.logo{
width: 125px;
position: fixed;
}
.logo img{
width: 150px;
height: 40px;
margin-top: 8px;
margin-left: 140px;
position: fixed;
}
@media screen and (max-width: 1280px) {
#menu{
position: absolute;
top:0px;
right: 0px;
height: 37px;
padding-top: 19px;
margin-right: 4%;
}
}
@media screen and (min-width: 1280px) {
#menu{
position: absolute;
top:0px;
right: 0px;
height: 37px;
padding-top: 19px;
margin-right: 6%;
position: fixed;
}
}
#menu a{
color:white;
text-decoration: none;
font-size: 14px;
background-repeat: no-repeat;
padding-top: 19px;
padding-bottom: 22px;
padding-left: 10px;
padding-right: 10px;
}
#menu a:hover{
background-image: url(hover.jpg);
}
input[type="text"],input[type="email"],input[type="password"]{
border: 1px solid #E2E2E2;
width: 300px;
height: 35px;
padding: 5px;
color:rgb(70,120,180);
}
input[type="text"]:hover,input[type="email"]:hover,input[type="password"]:hover{
border: 1px solid #006FC4;
}
input[type="submit"]{
background-color: rgb(70,120,180);
border-radius: 7px;
color:white;
border: 1px solid rgb(70,120,180);
padding: 5px;
width:80px;
}
div#div01{
margin-top:150px;
margin-left:300px;
position:absolute;
height:260px;
width:350px;
}
pre#pre01{
color:blue;
font-size:18px;
position:absolute;
margin-left:10px;
margin-top:20px;
}