-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.css
86 lines (85 loc) · 1.29 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
body {
margin: 0;
padding: 0;
}
.header {
background-color: dodgerblue;
text-align: center;
padding: 14px 0px;
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
color: white;
margin-bottom: 140px;
}
.header span {
padding: 2px 10px;
border-radius: 50%;
background-color: lightgray;
color: black;
}
h2 {
font-weight: 500;
}
.container {
width: 80%;
margin: auto;
}
.row {
display: flex;
justify-content: center;
margin-top: 20px;
margin-bottom: 50px;
}
.row .card {
box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
padding: 10px;
border-radius: 3px;
width: 50%;
margin: auto;
}
.card h2 {
text-align: center;
font-size: 25px;
margin: 0px;
margin-top: 5px;
margin-bottom: 25px;
}
.row form {
width: 100%;
margin: auto;
}
.row input {
width: 75%;
}
.row input[type="submit"] {
width: 23%;
padding: 5px 4px;
border: none;
background-color: dodgerblue;
color: white;
border-radius: 3px;
}
.row input[type="checkbox"] {
width: auto;
}
footer {
width: 52%;
margin: auto;
font-size: 14.5px;
}
@media screen and (max-width: 768px) {
.header {
padding: 10px 0px;
margin-bottom: 140px;
}
.card {
width: 100% !important;
}
footer {
width: 100%;
margin: auto;
font-size: 14.5px;
}
.row label {
font-size: 15px;
}
}