-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (79 loc) · 1.26 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background: #333;
text-align: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.header{
background-color: slateblue;
color: white;
margin: 0;
padding: 0;
transition: .9s;
}
.header *{
padding: 10px;
}
.mode{
background-color: #fff;
display: flex;
justify-content: space-between;
padding:0 30%;
align-items: center;
font-size: 12px;
}
.mode span:hover{
background-color: #673AB7;
color: white;
}
.diff{
display: flex;
}
.diff *{
margin-left:20px;
transition: 0.5s;
}
.diff span:hover{
background: #673AB7;
color: white;
}
.colors{
height: 200px;
width: 280px;
background-color: #333;
margin: 10px auto 5px auto;
padding: 10px 10px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
.colors div{
height: 80px;
width: 80px;
background:teal;
border-radius: 8px;
/* transition: .4s; */
}
.colors~p{
margin-top: 0;
text-transform: uppercase;
color: white;
transition: 0.4s;
font-size: 12px;
font-weight: bold;
}
#reset{
background-color: green;
color: white;
border-style: hidden;
border-radius: 3px;
width: 90px;
height: 27px;
margin-top: 10px;
display: none;
}