-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (98 loc) · 2.5 KB
/
Copy pathstyle.css
File metadata and controls
109 lines (98 loc) · 2.5 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
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
/* تنسيق عام للجسم والخلفية */
:root {
--primary-gradient: linear-gradient(135deg, #3d5159 0%, #50696a 10%);
--glass-bg: rgba(255, 255, 255, 0.15);
--border-white: rgba(255, 255, 255, 0.3);
}
body {
margin: 0;
padding: 20px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: var(--primary-gradient);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
direction: a; /* لضبط اللغة العربية */
font-family: Arial, Helvetica, sans-serif;
}
/* حاوية النموذج (التأثير الزجاجي) */
.container {
background: var(--glass-bg);
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
border: 1px solid var(--border-white);
border-radius: 20px;
padding: 40px;
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
width: 100%;
max-width: 500px;
margin-top: 50px;
}
h4, h5 {
color: white;
text-align: center;
margin-bottom: 20px;
}
/* تنسيق المسافات بين الحقول */
.input-group {
margin-bottom: 8px; /* مسافة معقولة بين كل حقل والآخر */
}
label {
display: block;
color: white;
margin-bottom: 8px;
font-weight: bold;
}
/* تنسيق الحقول السبعة */
input {
width: 100%;
padding: 12px 15px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid var(--border-white);
border-radius: 10px;
color: white;
font-size: 16px;
box-sizing: border-box;
transition: all 0.3s ease;
}
/* تأثير عند الضغط على الحقل */
input:focus {
background: rgba(255, 255, 255, 0.2);
border-color: #175e70;
outline: none;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
/* تنسيق زر الإرسال */
button {
width: 30%;
padding: 15px;
border: none;
border-radius: 10px;
background: #d3e7ef;
color: #0d697b;
font-weight: bold;
font-size: 18px;
cursor: pointer;
transition: 0.3s;
margin-top: 10px;
}
button:hover {
background: #e0e0e0;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
/* رابط عرض الطلاب */
.view-link {
display: block;
;
margin-top: 20px;
color: white;
text-decoration: 1;
font-size: 8px;
opacity: 0.2;
}
.view-link:hover {
opacity: 2;
text-decoration: underline;
}