Blame view

PHPMailer/examples/test/demo.css 1.4 KB
42868d70   andryeyev   Создал GIT
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
  body,h1,h2,h3,p,quote,small,form,input,ul,li,ol,label{
  	margin:0px;
  	padding:0px;
  }
  
  body{
  	color:#555555;
  	font-size:13px;
  	background: url(img/dark_wood_texture.jpg) #282828;
  	font-family:Arial, Helvetica, sans-serif;
  }
  
  .clear{
  	clear:both;
  }
  
  #main-container{
  	width:400px;
  	margin:30px auto;
  }
  
  #form-container{
  	background-color:#f5f5f5;
  	padding:15px;
  	
  	-moz-border-radius:12px;
  	-khtml-border-radius: 12px;
  	-webkit-border-radius: 12px;
  	border-radius:12px;
  }
  
  td{
  	white-space:nowrap;
  }
  
  a, a:visited {
  	color:#00BBFF;
  	text-decoration:none;
  	outline:none;
  }
  
  a:hover{
  	text-decoration:underline;
  }
  
  h1{
  	color:#777777;
  	font-size:22px;
  	font-weight:normal;
  	text-transform:uppercase;
  	margin-bottom:5px;
  }
  
  h2{
  	font-weight:normal;
  	font-size:10px;
  	
  	text-transform:uppercase;
  	
  	color:#aaaaaa;
  	margin-bottom:15px;
  	
  	border-bottom:1px solid #eeeeee;
  	margin-bottom:15px;
  	padding-bottom:10px;
  }
  
  label{
  	text-transform:uppercase;
  	font-size:10px;
  	font-family:Tahoma,Arial,Sans-serif;
  }
  
  textarea{
  	color:#404040;
  	font-family:Arial,Helvetica,sans-serif;
  	font-size:12px;
  }
  
  td > button{
  	text-indent:8px;
  }
  
  .error{
  	background-color:#AB0000;
  	color:white;
  	font-size:10px;
  	font-weight:bold;
  	margin-top:10px;
  	padding:10px;
  	text-transform:uppercase;
  	width:240px;
  }
  
  #loading{
  	position:relative;
  	bottom:9px;
  	visibility:hidden;
  }
  
  .tutorial-info{
  	color:white;
  	text-align:center;
  	padding:10px;
  	margin-top:10px;
  }