-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
113 lines (95 loc) · 1.83 KB
/
style.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
* {
padding: 0;
margin: 0;
}
body {
font-family: 'Poppins', sans-serif;
font-family: 'Young Serif', serif;
}
.container {
padding: 50px;
}
.section-one {
background-color: black;
color: white;
padding: 20px;
}
.section-one__contact {
background-color: orangered;
color: white;
text-decoration: none;
padding-left: 10px;
padding-right: 10px;
padding-top: 5px;
padding-bottom: 5px;
display: inline-block;
}
.section-one__name {
font-size: 60px;
}
.section-one__role {
font-size: 30px;
margin-top: 10px;
}
.section-two,
.section-three,
.section-four,
.section-five {
margin-top: 20px;
}
.section-two__desc,
.section-three__desc,
.section-four__desc,
.section-five__desc {
margin-top: 10px;
}
.section-five {
background-color: black;
color: white;
padding: 20px;
}
.section-five__title a {
color: skyblue;
}
.section-three li,
.section-four li {
list-style: none;
}
.section-three {
background-color: #6462fd;
color: black;
padding: 20px;
display: inline-block;
border-radius: 10px;
height: 200px;
vertical-align: top;
}
.section-four {
background-color: #fe7517;
color: black;
padding: 20px;
display: inline-block;
height: 200px;
border-radius: 10px;
vertical-align: top;
}
.contact-form{
margin-top: 20px;
}
.contact-form__input,.contact-form__textarea,.contact-form__submit{
margin-top:10px;
}
.contact-form__input{
padding: 10px;
border:none;
border-bottom: solid black 1px;
}
.contact-form__submit{
padding-top: 10px;
padding-bottom:10px;
padding-left:20px;
padding-right: 20px;
background-color: orangered;
color: black;
border: none;
}