-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
102 lines (87 loc) · 1.55 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
*{
margin: 0;
padding: 0;
background-color: rgb(247, 241, 233);
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
button{
height: 30px;
width: 100px;
border-radius: 5px;
border-top: unset;
border-left: unset;
margin-top: 50px;
margin-left: 950px;
}
button:hover{
background-color: snow;
border-color: rgb(227, 228, 229);
color: dimgrey;
}
#img img{
height: 250px;
width: 250px;
border-radius: 100%;
margin-left: 630px;
margin-top: -20px;
}
#p1,#p2,#p3{
text-align: center;
}
#p1{
margin-top: 20px;
font-size: larger;
color: rgb(23, 22, 22);
font-weight: 900;
}
#p2{
margin-top: 10px;
}
#p2,#p3{
font-size: small;
color: rgb(69, 70, 70);
}
.div{
margin-left: 460px;
margin-top: 40px;
border-radius: 10px;
height: 50px;
width: 600px;
background-color: rgb(242, 246, 249);
display: flex;
justify-content: center;
align-items: center;
}
.div a{
background-color: rgb(242, 246, 249);
color: rgb(94, 95, 95);
font-size: 20px;
text-decoration: none;
}
.div a i{
background-color: rgb(242, 246, 249);
}
.div a:hover{
cursor: pointer;
color: rgb(28, 29, 29);
font-size: 21px;
font-weight: 700;
}
.div:hover{
height: 52px;
}
#first-div{
margin-top: 50px;
}
#last-div{
margin-bottom: 50px;
}
#footer-section{
height: 20px;
width: 100%;
background-color: rgb(242, 246, 249);
text-align: center;
color: rgb(94, 95, 95);
margin-left: 5px;
font-size: smaller;
}