-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
107 lines (90 loc) · 1.79 KB
/
main.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
body, html{
height: 100%;
padding: 0;
margin: 0;
font-family: 'Sniglet', cursive;
}
#form{
height: 100%;
background-color:#98d4f3;
overflow: hidden;
position: relative;
}
form{
margin: 0 auto;
width: 500px;
padding-top: 40px;
color:blue;
position: relative;
}
.design1{
font:bold 46px Tahoma, Geneva, sans-serif;
font-style:normal;
color:#ffffff;
background:#8257e6;
border:0px solid #ffffff;
text-shadow:0px -1px 1px #222222;
box-shadow:8px 2px 5px #000000;
-moz-box-shadow:8px 2px 5px #000000;
-webkit-box-shadow:8px 2px 5px #000000;
border-radius:10px 10px 10px 10px;
-moz-border-radius:10px 10px 10px 10px;
-webkit-border-radius:10px 10px 10px 10px;
width:700px;
padding:20px 43px;
cursor:pointer;
margin:0 auto;
}
label, input, textarea{
display: block;
}
input, textarea{
width: 500px;
border: none;
border-radius: 20px;
outline: none;
padding: 10px;
font-family: 'Sniglet', cursive;
font-size: 1em;
color: #676767;
transition: border 0.5s;
-webkit-transition: border 0.5s;
-moz-transition: border 0.5s;
-o-transition: border 0.5s;
border: solid 3px #98d4f3;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box;
}
input:focus, textarea:focus{
border: solid 3px #77bde0;
}
textarea{
height: 100px;
resize: none;
overflow: auto;
}
input[type="submit"]{
background-color: #F90;
color: white;
height: 50px;
cursor: pointer;
margin-top: 30px;
font-size: 1.29em;
font-family: 'Sniglet', cursive;
-webkit-transition: background-color 0.5s;
-moz-transition: background-color 0.5s;
-o-transition: background-color 0.5s;
transition: background-color 0.5s;
}
input[type="submit"]:hover{
background-color: #e58f0e;
}
label{
font-size: 1.5em;
margin-top: 20px;
padding-left: 20px;
}
.formgroup{
background-image: url('back.gif');
}