-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.css
113 lines (99 loc) · 2.01 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
.doto-neel {
font-family: "Doto", sans-serif;
font-optical-sizing: auto;
font-weight: 900;
font-style: normal;
font-variation-settings:
"ROND" 0;
}
.share-tech-mono-regular {
font-family: "Mono", serif;
font-weight: 400;
font-style: normal;
}
body {
font-family: 'Roboto', sans-serif;
color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #1a1a1a;
}
.form {
max-width: 50%;
background: rgba(30, 30, 30, 0.85);
padding: 2rem;
border-radius: 2rem;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.data0{
margin-bottom: 1rem;
padding: 0.5rem;
border-radius: 0.6rem;
}
select{
margin-left: 5px;
padding: 10px;
border-radius: 10px;
}
.data1, .data2, .data3 {
margin-bottom: 1cqh;
}
label {
font-family: "Mono",;
display: inline-block;
margin-bottom: 0.5rem;
margin-top: 1rem;
font-weight: bold;
color: #e0e0e0;
}
input[type="text"],
input[type="email"],
input[type="date"],
input[type="radio"]
{
font-family: Doto;
font-weight: 900;
width: 90%;
padding: 1rem;
border: 1px solid #444;
border-radius: 0.8rem;
background-color: #222;
color: #f0f0f0;
transition: border-color 0.3s, background-color 0.3s;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="date"]:focus {
border-color: #00bcd4;
background-color: #333;
outline: none;
}
input[type="radio"] {
width: auto;
margin-right: 0.2rem;
}
.data2 label {
display: inline-block;
margin-right: 1rem;
}
.button-container {
display: flex;
justify-content: space-between;
}
input[type="submit"] {
background-color: #00bcd4;
color: white;
border: none;
padding: 1rem;
border-radius: 0.7rem;
cursor: pointer;
transition: background-color 0.3s, transform 0.2s;
width: 49%;
font-weight: bold;
}
input[type="submit"]:hover {
background-color: #0097a7;
transform: scale(1.05);
}