-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUntitled-1.css
128 lines (109 loc) · 2.37 KB
/
Untitled-1.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
* {
margin: 0 auto;
padding: 0;
}
.header {
width: 1200px;
height: 1000px;
}
.nav ul {
list-style-type:none;
}
.nav ul li {
width: 170px;
height: 50px;
/*float:left;*/
background-color: pink;
display: inline-block; /* what is inline block doing? */
cursor:pointer;
}
.nav a:hover{
color:green;
background-color: yellow;
text-decoration:underline ;
display: inline-block;
}
/* Formatting DropDown -------------------------------- */
.drop {
width: 1200px;
height: 40px;
background: linear-gradient(orange, yellow);
}
.drop ul {
list-style-type: none;
}
.drop a {
width: 240px;
height: 40px;
background: linear-gradient(rgb(245, 245, 245), blue);
color: white;
float: left;
text-align: center;
line-height: 40px;
}
.drop ul li ul {
display: none;
}
.drop ul li:hover ul {
display: block;
}
.drop ul li {
width: 240px;
height: 40px;
float: left;
}
/* for formatting of nav------------------ */
.drop ul li a:hover {
background: linear-gradient(red, yellow);
}
.drop>ul>li>ul>li>a:hover {
background: linear-gradient(black, gray);
}
/* Formatting registration form ---------------------------------- */
.first {
width: 1200px;
height: 500px;
background-image: url("10.jpg");
}
.second {
width: 500px;
height: 400px;
/*background-color:orange;*/
background-color: rgba(0, 0, 0, 0.1);
font-size: 30px;
font-weight: bold;
text-decoration: underline;
font-style: italic;
font-family: arial black;
text-decoration-color: red;
text-decoration-style: dotted;
letter-spacing: 10px;
word-spacing: 20px;
/*opacity:0.1;*/
}
.third {
width: 800px;
height: 500px;
background: linear-gradient(rgba(255, 0, 0, 0.4), rgba(0, 255, 0, 0.5), blue);
padding-top: 150px;
box-sizing: border-box;
}
.third ul {
list-style-type: none;
}
.third input {
padding: 5px;
margin-top: 5px;
font-size: 20px;
background-color: transparent;
color: white;
/*border:none;*/
/*border:1px solid gray;*/
border: none;
border-bottom: 1px solid gray;
}
.third form {
background-color: rgba(0, 0, 0, 0.5);
width: 300px;
padding: 10px;
}