-
Notifications
You must be signed in to change notification settings - Fork 0
/
Mitzi.css
139 lines (120 loc) · 2.41 KB
/
Mitzi.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
/* Oranit Madar 207973488 */
/* Raziel houri 305427874 */
body {
background: linear-gradient(135deg, #71b7e6, #9b59b6);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 0;
padding: 20px;
font-family: 'Poppins', sans-serif;
color: #333;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
max-width: 1200px;
width: 100%;
padding: 20px;
box-sizing: border-box;
background: rgba(255, 255, 255, 0.9);
border-radius: 8px;
}
.content, .form-container {
flex: 1 1 45%;
padding: 20px;
box-sizing: border-box;
margin: 10px;
background: rgba(255, 255, 255, 0.9);
border-radius: 8px;
}
img {
//make img on the middle of the page
display: middle;
max-width: 70%;
height: auto;
border-radius: 8px;
margin-bottom: 20px;
}
h2 {
color: #333;
font-size: 24px;
}
p {
margin: 0;
padding: 0;
}
form {
display: flex;
flex-direction: column;
align-items: center;
}
#form {
width: 100%;
max-width: 400px;
padding: 20px;
background-color: whitesmoke;
border-radius: 8px;
font-size: 14px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#form h1 {
margin-bottom: 20px;
}
.input-control {
width: 100%;
margin-bottom: 20px;
}
.input-control label {
display: block;
margin-bottom: 5px;
}
.input-control input {
width: 100%;
padding: 10px;
border: 2px solid #f0f0f0;
border-radius: 4px;
font-size: 14px;
box-sizing: border-box;
}
.input-control input:focus {
border-color: #009688;
outline: none;
}
.input-control .error {
color: #ff3860;
font-size: 12px;
height: 16px;
}
button {
padding: 10px;
width: 100%;
color: white;
background-color: #2939c2;
border: none;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
margin-top: 10px;
}
button:hover {
background-color: #1e2f9d;
}
@media only screen and (max-width: 600px) {
.container {
flex-direction: column;
padding: 10px;
}
.content, .form-container {
flex: 1 1 100%;
margin: 10px 0;
padding: 15px;
}
#form {
width: 100%;
padding: 15px;
}
}