-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (63 loc) · 1.98 KB
/
Copy pathstyle.css
File metadata and controls
71 lines (63 loc) · 1.98 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
#wrap {
width: 400px;
margin: 0 auto;
text-align: left;
margin-top: 8px;
padding: 5px;
background: #fff;
font-family: AvenirLTStd, Arial, Helvetica, sans-serif;
font-size: 13px;
line-height: 16px;
}
#wrap legend {
font-size: 16px;
font-family: Georgia, "Times New Roman", Times, serif;
color: #000;
font-weight: bold;
font-style: italic;
padding-bottom: 10px;
}
#wrap label {
display: block;
font-size: 12px;
color: #000;
font-weight: bold;
}
#wrap label.inlinelabel {
display: inline;
}
#wrap input[type="radio"] {
margin-top: 8px;
margin-bottom: 8px;
}
#wrap input[type="text"]:hover,
#wrap input[type="text"]:active {
background-color: #FAF398;
}
#wrap div#totalPrice {
padding: 10px;
font-weight: bold;
background-color: #ff0;
}
#wrap label.radiolabel {
font-weight: normal;
display: inline;
}
.design {
display: inline-block; /* Строчно-блочный элемент */
padding: 5px 20px; /* Добавляем поля */
text-decoration: none; /* Убираем подчёркивание у ссылки */
cursor: pointer; /* Курсор в виде руки */
background: #deefff; /* Фон для браузеров, не поддерживающих градиент */
/* Градиент */
background: -moz-linear-gradient(top, #deefff 0%, #98bede 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#deefff), color-stop(100%,#98bede));
background: -webkit-linear-gradient(top, #deefff 0%,#98bede 100%);
background: -o-linear-gradient(top, #deefff 0%,#98bede 100%);
background: -ms-linear-gradient(top, #deefff 0%,#98bede 100%);
background: linear-gradient(top, #deefff 0%,#98bede 100%);
border-radius: 10px; /* Скругляем уголки */
border: 1px solid #008; /* Добавляем синюю рамку */
font: 12px/1 Arial, sans-serif; /* Рубленый шрифт */
color: #2c539e; /* Цвет текста и ссылки */
}