-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskills.css
More file actions
63 lines (47 loc) · 971 Bytes
/
skills.css
File metadata and controls
63 lines (47 loc) · 971 Bytes
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
/* Reset Default Setting*/
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
/* BOX SECTION */
.my-services{
display: flex;
/*gap: 60px*/;
justify-content: center;
margin-bottom: 20px;
}
.box{
background-color: teal;
color: black;
height: 550px;
width: 800px;
padding: 50px;
margin-top: 5px;
font-size: 16px;
line-height: 1.5;
font-family:Georgia, 'Times New Roman', Times, serif;
}
.fab{
color: white;
font-size: 25px;
justify-content: space-between;
}
.email-section{
margin: 20px 180px;
}
/* BUTTON SECTION */
.submit-button {
font-size: 18px ;
background-color: white;
color: black;
border: 1px solid white;
border-radius: 5px;
padding: 8px 15px;
cursor: pointer;
font-weight: 100;
margin: 20px 100px;
}
.submit-button:hover {
font-weight: 600;
}