-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
117 lines (111 loc) · 1.96 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
.dark-mode {
background-color: black;
color: white;
}
footer{
margin: 4px;
padding: 7px;
}
select{
border: 2px dashed black;
color: tomato;
background-color: bisque;
cursor: pointer;
}
body{
padding: 0;
margin: 0;
box-sizing: border-box;
background-color: whitesmoke;
display: flex;
justify-content: center;
}
div{
/* border: 1px solid rgb(69, 168, 207); */
/* box-shadow:5px 10px 18px 10px rgb(198, 196, 196); */
/*background-color: rgba(154, 19, 156, 0.1); */
width: 100%;
height: 100%;
margin: auto;
padding: 10px;
display: flex;
justify-content: center;
}
button{
margin: 0px;
width: 50px;
height: 50px;
padding: 0px;
background-color: rgb(16, 36, 36);
color: aliceblue;
border-radius: 20%;
cursor: pointer;
border :none;
}
.but{
height: 40px;
}
.egal{
background-color: brown;
}
.Trait{
background-color: green;
}
.depart{
background-color: rgb(249, 0, 0);
}
.btn{
background-color: brown;
}
.but{
background-color: rgb(206, 222, 140);
border-radius: 10px;
border: none;
}
a{
text-decoration: none;
color: white;
}
button:active{
background-color: gray;
}
label{
position: absolute;
width: 45px;
height: 19px;
right: 20px;
top: 20px;
border: 2px solid;
border-radius: 20px;
}
label:before{
position: absolute;
content: '';
width:18px;
height: 18px;
left: 1px;
top: 0.7px;
border-radius: 50%;
background: #000;
cursor: pointer;
transition: 0.4s;
}
label.active:before{
left: 24px;
background: #fff;
}
body.night{
background: #000;
color: #fff;
}
@media only screen and (max-width: 500px) {
div {
width: 100%;
}
button {
width: 40px;
height: 40px;
}
label{
display: none; }
}