-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
127 lines (111 loc) · 2.47 KB
/
main.css
File metadata and controls
127 lines (111 loc) · 2.47 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
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
form {
border-radius: 2%;
margin-left: auto;
margin-right: auto;
margin-top: 75px;
height: 450px;
width: 500px;
background-color: rgb(249, 255, 254);
opacity: 0.9;
}
.bigInput {
border-radius: 5%;
position: relative;
top: 35px;
left: 42px;
height: 35px;
width: 400px;
padding-left: 10px;
margin: 5px;
background-color: ivory;
border-style: unset;
}
.smallInput {
position: relative;
top: 35px;
left: 43px;
border-radius: 5%;
height: 35px;
width: 184px;
padding-left: 10px;
margin: 4px;
background-color: ivory;
border-style: dotted;
}
.button {
border-radius: 5%;
position: relative;
top: 60px;
left: 47px;
margin-bottom: 10px;
height: 50px;
width: 410px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-style: inherit;
font-size: 22px;
border-style: hidden;
background-color: rgb(207, 207, 137);
}
h1 {
position: relative;
left: 80px;
top: 15px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-style: oblique;
font-size: 24px;
}
h2 {
position: relative;
width: 390px;
left: 52px;
top: 15px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 14px;
}
h3 {
position: relative;
width: 390px;
left: 60px;
font-size: 10px;
bottom: -80px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
a {
text-decoration: none;
color: rgb(90, 63, 63);
}
a:hover {
transition: 0.5s;
font-size: 11px;
color: gold;
}
a:focus {
color: red;
}
body {
background-image: url(C:/github/git_form_registration/form_registration/background/1.jpg);
}
.bodyCl:hover {
animation: gradien 18s ease-in-out infinite;
}
@keyframes gradien {
0% {
transition: 0.5s;
background-position: 50% 50%;
background-image: url(C:/github/git_form_registration/form_registration/background/1.jpg);
}
33% {
transition: 0.5s;
background-position: 50% 50%;
background-image: url(C:/github/git_form_registration/form_registration/background/2.jpg);
}
66% {
transition: 0.5s;
background-position: 50% 50%;
background-image: url(C:/github/git_form_registration/form_registration/background/3.jpg);
}
50% {
transition: 0.5s;
background-position: 50% 50%;
background-image: url(C:/github/git_form_registration/form_registration/background/4.jpg);
}