-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (85 loc) · 1.57 KB
/
Copy pathstyle.css
File metadata and controls
94 lines (85 loc) · 1.57 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.box{
font-family: Arial, Helvetica, sans-serif ,sans-serif;
display: flex;
justify-content: space-around;
align-items: center;
}
.box h1{
text-align: left;
padding: 20px;
}
.nav h5{
color: dimgray;
}
.nav h5:hover{
background-color: black;
color: white;
transform: translateY(-5px);
}
.Username{
padding: 18px;
border-radius: 15px;
color: rgb(29, 119, 202);
background-color: rgb(167, 216, 248);
}
a{
text-decoration: none;
}
.nav{
color: black;
font-size: 1.2rem;
display: flex;
justify-content: center;
align-items: center;
list-style-type: none;
transition: 1s;
transition-property: transform background-color color;
gap: 20px;
}
/* >> body part */
.hero{
margin: 2vw;
padding: 20px;
display: flex;
gap: 30px;
}
.left{
text-align:left;
font-size: 2.5em;
display: flex;
flex-direction: column;
gap: 40px;
margin: 20px;
padding: 20px;
}
button{
background-color: rgb(29, 119, 202);
border: 1px solid rgb(29, 119, 202);
border-radius: 20px;
padding: 20px;
font-size: 2rem;
cursor: pointer;
}
.b1{
color: white;
background-color: rgb(29, 119, 202);
}
.right{
padding: 20px;
margin: 0.5vw;
}
header{
color: rgb(39, 60, 66);
}
.description h1{
color: rgb(40, 163, 229);
}
.description p{
font-size: 0.8em;
color: darkgrey;
}