-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
73 lines (73 loc) · 1.29 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
* {
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
user-select: none;
}
.container {
width: 100vw;
height: 400px;
display: flex;
justify-content: center;
align-items: center;
margin-top: 40px;
}
.para {
background-color: rgb(30, 30, 30);
font-size: 1.7rem;
color: white;
font-weight: bold;
padding: 10px;
border-radius: 4px;
display: flex;
}
.btn {
color: black;
background: transparent;
border: 2px solid blue;
font-size: 0.8rem;
font-weight: bold;
padding: 8px 12px;
box-shadow: 1px 2px 3px black;
border-radius: 5px;
}
.flipper {
display: flex;
flex-direction: column;
align-items: center;
gap: 2rem;
border-radius: 4px;
}
.btn:hover {
background-color: rgb(146, 142, 142);
}
.color-name {
margin-left: 8px;
color: rgb(30, 198, 0);
}
.navigation {
background-color: white;
padding: 15px 10px 15px 30px;
display: flex;
justify-content: space-between;
border-bottom: 1px solid black;
box-shadow: 0px 2px 10px 0px black;
}
.navigation ul li a {
text-decoration: none;
font-size: 1.2rem;
font-weight: bold;
color: #fb8500;
}
.navigation ul li {
list-style: none;
display: inline-block;
margin-right: 10px;
}
.navigation ul li a:hover {
color: #ffb703;
}
.heading {
color: #023047;
}