-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_T.css
138 lines (111 loc) · 2.55 KB
/
main_T.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;1,100;1,200;1,300&display=swap');
.form_T{
width:50%;
padding:40px;
margin-left: auto;
margin-right: auto;
margin-top: 50px;
margin-bottom: 20px;
background: #FFF;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.13);
}
.form_T .inner-wrap{
padding: 30px;
background: #F8F8F8;
border-radius: 6px;
margin-bottom: 15px;
}
.form_T h1{
background: black;
padding: 20px 30px 15px 30px;
margin: -30px -30px 30px -30px;
border-radius: 10px 10px 0 0;
color: #fff;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.12);
font: normal 40px 'Bitter', serif;
box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
border: 1px solid black;
}
.form_T h1 > span{
display: block;
margin-top: 2px;
font: 13px Arial, Helvetica, sans-serif;
}
.form_T label{
display: block;
color: #888;
margin-bottom: 15px;
}
.form_T .label1{
font: 20px Arial, Helvetica, sans-serif;
}
.form_T .label2{
font: 15px Arial, Helvetica, sans-serif;
}
.form_T input[type="text"],
.form_T input[type="date"],
.form_T input[type="datetime"],
.form_T input[type="email"],
.form_T input[type="number"],
.form_Tinput[type="search"],
.form_T input[type="time"],
.form_T input[type="url"],
.form_T input[type="password"],
.form_T textarea,
.form_T select {
display: block;
box-sizing: border-box;
width: 100%;
padding: 8px;
border-radius: 6px;
border: 2px solid #fff;
box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.33);
}
.form_T input[type="radio"]{
margin-left: 20px;
}
.form_T .section{
font: normal 30px 'Bitter', serif;
color: black;
margin-bottom: 5px;
}
.form_T .section span {
background: black;
padding: 5px 10px 5px 10px;
position: absolute;
border-radius: 50%;
border: 4px solid #fff;
font-size: 20px;
margin-left: -45px;
color: #fff;
margin-top: -3px;
}
.form_T input[type="button"],
.form_T input[type="submit"]{
background: black;
padding: 8px 20px 8px 20px;
border-radius: 5px;
display: block;
margin-left: auto;
margin-right: auto;
color: #fff;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.12);
font: normal 30px 'Bitter', serif;
box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
border: 1px solid black;
font-size: 20px;
}
.form_T input[type="button"]:hover,
.form_T input[type="submit"]:hover{
background: white;
color: black;
box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.28);
}
.material-symbols-outlined {
font-variation-settings:
'FILL' 0,
'wght' 400,
'GRAD' 0,
'opsz' 48
}