-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.css
88 lines (71 loc) · 1.26 KB
/
About.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
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
background: white;
}
header {
position: relative;
top: 60px;
overflow: hidden;
height: 70vh;
margin-bottom: 45px;
margin-left: 30px;
margin-right: 100px;
display: grid;
}
.header-container {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 100px;
height: 100%;
}
.header-right p {
margin: 16px 0 35px;
align-content: end;
}
.header-right a {
color: black;
}
.header-right h1 {
text-align: center;
justify-content: center;
}
.contact-me-form {
padding: 2rem 4rem;
}
.contact-me-form {
display: flex;
flex-direction: colummn;
gap: 1rem;
margin-top: 3rem;
}
.form-control {
display: flex;
flex-direction: column;
gap: 0.5rem
}
input:not([type="checkbox"]) {
width: 100%;
border: 1px solid black;
padding: 0.7rem;
border-radius: 0.5rem;
}
input::placeholder {
color: white;
}
label {
font-weight: 500;
color: purple;
}
button {
background-color: blue;
}
article {
position: relative;
top: 60px;
}
.links a{
text-decoration: underline;
}