-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
96 lines (81 loc) · 1.56 KB
/
Copy pathmain.css
File metadata and controls
96 lines (81 loc) · 1.56 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
body{
background:url(./images/classic-blue.jpg) no-repeat center fixed;
background-size: cover;
}
.avatar {
border-radius: 360px;
width: 100px;
height: 100px;
border: 1px solid mediumturquoise;
}
.content {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 16px;
}
.title {
display: flex;
align-items: center;
flex-direction: column;
}
.title .position {
color: rgb(65, 62, 62);
}
.title .name {
font-weight: bold;
margin-bottom: 3px;
padding-bottom: 3px;
color: #272626;
}
.about {
font-size: 14px;
text-align: center;
color: rgb(97, 99, 97);
line-height: 1.5;
max-width: 80%;
}
#about-content,
#bio-content {
flex-direction: column;
align-items: center;
background-color: white;
}
h2
{ margin: 7px;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-radius: 4px;
background: rgba(196, 196, 196, 0.28);
padding: 24px;
max-width: 500px;
margin: 0 auto;
}
.contact-form {
background: white;
border: 1px solid lightslategray;
padding: 16px;
width: 465px;
}
input,
textarea {
width: 250px;
border: 1px solid rgb(185, 185, 185);
border-radius: 2px;
padding: 8px 2px;
}
.input-item * {
display: block;
margin-bottom: 4px;
}
button {
padding: 8px;
background:#8d8d8d;
border: none;
color: #000000;
border-radius: 2px;
}