-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
72 lines (62 loc) · 986 Bytes
/
styles.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
* {
font-family: 'Open Sans', sans-serif;
}
#app {
display: block;
max-width: 200px;
margin: 0px auto;
}
#output {
display: block;
height: 47px;
width: 100%;
padding: 10px 20px;
background: #777;
border: 1px solid #777;
color: #fff;
font-size: 21px;
font-weight: 400;
line-height: 25px;
box-sizing: border-box;
}
#inputs {
}
.row {
display: flex;
}
.row button {
display: block;
position: relative;
height: 50px;
width: 25%;
padding: 0px;
background: #fff;
border: none;
border-bottom: 1px solid #777;
border-left: 1px solid #777;
cursor: pointer;
outline: none;
font-size: 18px;
font-weight: 300;
}
.row:first-of-type button {
background: #ededed;
}
.row button:last-of-type {
background: orange;
border-right: 1px solid #777;
color: #fff;
}
.row button:hover:after {
content: '';
display: block;
position: absolute;
height: 100%;
width: 100%;
left: 0px;
top: 0px;
background: rgba(0, 0, 0, 0.06);
}
.row .double-wide {
width: 50%;
}