-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathland.css
More file actions
121 lines (103 loc) · 1.74 KB
/
Copy pathland.css
File metadata and controls
121 lines (103 loc) · 1.74 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
121
.min {
border-left: 1px solid #fff;
margin: 0 8px;
}
.navbar {
background-color: #000;
margin: 0px;
height: 40px;
color: #fff;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 16px;
}
.navbar a {
text-decoration: none;
color: #fff;
}
.navbar .nav-buttons {
display: flex;
gap: 8px;
align-items: center;
}
.head {
background-color: #dadbf1;
text-align: center;
padding: 30px 0;
}
.submit {
background-color: #000;
border: 1px solid #dadbf1;
color: #fff;
border-radius: 5px;
padding: 4px 10px;
cursor: pointer;
}
.sign {
background-color: #4C5FD5;
color: #fff;
border-radius: 5px;
border: none;
padding: 4px 10px;
cursor: pointer;
}
.container {
display: grid;
grid-template-columns: 1fr 1fr;
margin: 30px 30px;
gap: 30px;
}
img {
height: 68px;
width: 78px;
}
.man {
display: flex;
margin-right: 30px;
}
.footer {
background-color: #000;
color: #fff;
display: flex;
flex-direction: row;
gap: 100px;
padding: 20px 30px;
}
.footer div a {
display: block;
text-decoration: none;
color: #fff;
margin-bottom: 4px;
}
.can {
display: flex;
margin-right: 30px;
}
.mother {
display: flex;
margin-right: 30px;
}
.father {
display: flex;
margin-right: 30px;
}
.aunty {
display: flex;
margin-right: 30px;
}
.son {
display: flex;
margin-right: 30px;
}
@media (max-width: 400px) {
.navbar .nav-buttons {
flex-direction: column;
align-items: flex-start;
gap: 6px;
width: 100%;
}
.can, .man, .aunty, .son, .mother, .father {
flex-direction: column;
}
}