-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
125 lines (100 loc) · 1.74 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
@import url(http://fonts.googleapis.com/css?family=Reenie+Beanie);
.delete {
position: absolute;
left: 165px;
background-image: url("/img/delete.png");
width: 16px;
height: 16px;
top: -1px;
}
.errorBorders{
border:solid 2px red;
}
.messageView:nth-child(even){
-o-transform:rotate(4deg++);
-webkit-transform:rotate(4deg);
-moz-transform:rotate(4deg);
}
#messageBox{
min-height:300px;
}
.message_p{
text-align:center;
font-size: 15px;
word-wrap:break-word;
font-family: "Reenie Beanie", arial, sans-serif;
font-size: 180%;
}
.messageView{
float:left;
background-color:#FFC;
width:180px;
height:auto;
min-height:150px;
margin:10px auto 5px 20px;
overflow-x:hidden;
position:relative;
-webkit-box-shadow: 5px 5px 7px rgba(33, 33, 33, 7);
box-shadow: 5px 5px 7px rgba(33, 33, 33, 7);
}
input[name=formbtn]{
position:relative;
left:82%;
}
#messageText{
margin:10px 0px 0px 10px;
width:95%;
max-width:550px;
}
#nameText{
margin:1px 0px 0px 200px;
width:55%;
max-width:400px
}
#emailText{
margin:1px 0px 0px 200px;
width:55%;
max-width:400px;
}
#infobox{
position:relative;
top:-4px;
left:12px;
border:solid;
border-width:1px;
background-color:white;
width:150px;
text-align:center;
}
form {
margin: -19px 0 0 ;
}
#form{
border:solid;
border-width:1px;
min-height:130px;
width:500px;
background-color:white;
overflow:visible;
margin:0 auto;
}
*{
margin:0px;
padding:0px;
}
html{
height:100%
}
body{
height:100%;
background-color:green;
}
#wrapper{
width:100%;
height:100%;
}
h1.white{
position:releative;
text-align:center;
color:white;
}