-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcss.css
More file actions
120 lines (119 loc) · 2.37 KB
/
css.css
File metadata and controls
120 lines (119 loc) · 2.37 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
110
111
112
113
114
115
116
117
118
119
120
body{
margin: 0;
padding: 0;
}
.container{
width: 420px;
height: 410px;
background: rgb(181, 231, 231);
position: absolute;
top: 37%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 8px;
overflow: hidden;
}
.row {
display: flex;
flex-wrap: wrap;
}
.form{
width: 350px;
height: 410px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 8px;
overflow: hidden;
}
.form h1{
margin: 10px 0 5px;
font-family: 'B nazanin';
font-size: 35px;
color: rgb(243, 132, 6);
}
.form_tx{
margin: 0 0 12px;
font-family: 'B nazanin';
color: rgb(100, 100, 100);
font-size: 16px;
font-weight: 700;
}
.inpt{
width: 100%;
height: 30px;
text-align: right;
font-family: 'Times New Roman', Times, serif;
box-sizing: border-box;
outline: none;
border: none;
border-radius: 8px;
}
.slct_txt{
margin: 4px 0;
cursor: pointer;
}
.slct_opt{
font-family: 'Times New Roman', Times, serif;
}
.txt{
margin: 4px 0;
}
.file{
margin: 4px 0 10px;
padding:4px 4px;
background-color: white;
font-family: 'Times New Roman', Times, serif;
}
.form_checkbox{
text-align: right;
border-radius: 8px;
margin-bottom: 15px;
font-family: 'Times New Roman', Times, serif;
font-size: small;
font-weight: 700;
color: rgb(16, 128, 16);
}
.form_btn{
width: 35%;
height: 30px;
box-sizing: border-box;
outline: none;
border: none;
font-family: 'Times New Roman', Times, serif;
font-size: large;
font-weight: 700;
border-radius: 8px;
background-color: white;
color: rgb(16, 128, 16);
margin-bottom: 10px;
transition: 0.2s;
}
.form_btn:hover {
background-color: rgb(86, 175, 235);
transition: 0.1s;
cursor: pointer;
}
.form_enter{
text-decoration: none;
color: rgb(16, 128, 16);
font-family: 'Times New Roman', Times, serif;
font-size: large;
font-weight: 700;
margin-bottom: 10px;
}
@media only screen and (max-width: 450px) {
.container {
width: 310px;
height: 550px;
top: 47%;
}
.form{
width: 250px;
height: 550px;
}
.inpt{
height: 50px;
}
}