-
-
Notifications
You must be signed in to change notification settings - Fork 147
Expand file tree
/
Copy pathstyle.module.css
More file actions
39 lines (34 loc) · 664 Bytes
/
style.module.css
File metadata and controls
39 lines (34 loc) · 664 Bytes
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
.container {
border-radius: 10px;
background: #ffff;
box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
border: 2px solid transparent;
overflow: hidden;
transition: .3s border-color;
}
.container:hover {
border-color: #6779E1;
}
.options {
list-style: none;
}
.row {
display: block;
}
.option {
display: block;
width: 100%;
padding: 16px;
border: none;
background: none;
font-family: 'Nunito Sans', sans-serif;
font-size: 18px;
text-align: left;
cursor: pointer;
transition: .3s background;
outline: none;
}
.option.is-selected {
background: rgb(103, 121, 225);
color: #fff;
}