-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (66 loc) · 1.32 KB
/
style.css
File metadata and controls
72 lines (66 loc) · 1.32 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
/* Nav css */
.nav-center{
display: flex;
justify-content: space-around;
align-items: center;
text-align: center;
background-color: white;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.nav-links{
display: flex;
list-style-type: none;
}
h4{
color: blueviolet;
}
.nav-links li{
padding-left: 30px;
}
a{
color: black;
text-decoration: none;
}
a:active {
color:rgb(73, 73, 245);
}
/* Container css */
.container{
text-align: center;
font-family: Arial, Helvetica, sans-serif;
}
h2 {
margin: auto;
margin-top: 100px;
margin-bottom: 30px;
background-color: rgb(95, 90, 90);
color: white;
font-size: 30px;
padding-top: 20px;
padding-bottom: 40px;
width: 660px;
height: 10px;
border-radius: 10px;
}
.color {
color: rgb(73, 73, 245);
}
/* Botton css */
.btn {
background-color: transparent;
padding: 20px;
border: 1px solid black ;
cursor: pointer;
font-size: 20px;
border-radius: 10px;
}
.btn:hover{
background-color: rgb(59, 59, 59);
color: rgba(255, 255, 255, 0.911);
}
.btn:active{
background-color: black;
color: whitesmoke;
}