-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
110 lines (94 loc) · 2.63 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
*{
padding: 0%;
margin: 0%;
}
body{
.young-serif-regular {
font-family: "Young Serif", serif;
font-weight: 400;
font-style: normal;
}
}
.container{
padding: 50px;
}
.section-one{
background-color: black;
color: wheat;
padding: 20px;
vertical-align: top;
}
.section-one__role{
font-size: 20px;
margin-top: 10px;
}
.section-one__role:hover{
background-color: blue;
}
.section-one__contact{
font-size: 15px;
background-color: orangered;
color: white;
padding: 8px;
display: inline-block;
margin-top: 10px;
}
.section-one__contact:hover{ background-color: #6462fd;
}
.section-one__name{
font-family:sans-serif;
vertical-align: top;
}
.section-two__details,.section-two__title,.section-three,.section-four{
margin-top: 20px;
}
.section-two__dis,.section-three__des{
margin-top: 10px; }
.section-four{
background-color: black;
color: white;
padding: 20px;
}
.section-four__link2{
color:#6462fd;
}
.section-three li,.section-four li{
list-style: none;
}
.section-three{
background-color: #6462fd;
color: black;
padding: 20px;
display: inline-block;
border-radius: 10px;
}
.contact-form{
margin-top: 20px;
vertical-align: top;
.contact-form__input1{
padding-bottom: 20px;
}
}
.contact-form__input1,.contact-form__input2,.contact-form__textarea,.contact-form__submit{
margin-top: 10px;
}
.contact-form__input1,.contact-form__input2{
padding: 10px;
border: none;
border: solid black 1px ;
}
.contact-form__textarea,
.contact-form__submit{
padding: 10px;
border: none;
border: 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;
}