-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
149 lines (128 loc) · 2.99 KB
/
index.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
* {
/* margin: 0;
padding: 0; */
font-family: "Arial";
}
h1,
h2,
h3,
h4 {
margin: 8px auto;
}
/* Основные стили для input */
input[type="text"] {
max-width: 90%;
padding: 10px 15px;
margin: 10px 0;
font-size: 16px;
color: #333;
background-color: #f9f9f9;
border: 1px solid #ccc;
border-radius: 5px;
outline: none;
transition: all 0.3s ease;
}
input:focus {
border-color: #0078d7;
box-shadow: 0 0 5px rgba(0, 120, 215, 0.5);
}
input[type="checkbox"],
label {
user-select: none;
}
/* Основные стили для textarea */
textarea {
width: 90%;
padding: 10px 15px;
font-size: 16px;
color: #333;
background-color: #f9f9f9;
border: 1px solid #ccc;
border-radius: 5px;
outline: none;
resize: vertical; /* Разрешить изменение только по вертикали */
max-height: 300px; /* Ограничить максимальную высоту */
transition: box-shadow 0.3s ease;
}
textarea:focus {
border-color: #0078d7;
box-shadow: 0 0 5px rgba(0, 120, 215, 0.5);
}
/* Добавление прокрутки для textarea после достижения высоты */
textarea {
overflow-y: auto;
margin: 15px 0;
}
/* Основные стили для div */
div {
word-wrap: break-word; /* Перенос слов, чтобы они не выходили за границы */
overflow-wrap: break-word; /* Альтернативный перенос для длинных слов */
}
div.block {
padding: 20px;
margin: 15px 0;
background: linear-gradient(135deg, #e0eafc, #cfdef3);
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
font-size: 16px;
color: #333;
transition: all 0.3s ease;
}
/* Основные стили для button */
button {
padding: 10px 20px;
font-size: 16px;
/* font-weight: bold; */
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.2s ease;
}
button.primary {
color: #fff;
background-color: #0078d7;
}
button.primary:hover {
background-color: #005bb5;
/* transform: scale(1.05); */
}
button.primary:active {
background-color: #004494;
/* transform: scale(0.95); */
}
button.primary:disabled {
background-color: #ccc;
cursor: not-allowed;
}
/* Основные стили для button.secondary */
button.secondary {
padding: 10px 20px;
font-size: 16px;
font-weight: bold;
color: #333;
background-color: #f0f0f0;
border: 1px solid #ccc;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.2s ease;
}
button.secondary:hover {
background-color: #e0e0e0;
}
button.secondary:active {
background-color: #d0d0d0;
/* transform: scale(0.95); */
}
button.secondary:disabled {
background-color: #f9f9f9;
cursor: not-allowed;
}
ol > li.gost-link {
font-family: "Times New Roman";
font-size: 14pt;
}
/* div:hover {
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
transform: translateY(-2px);
} */