-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
101 lines (85 loc) · 1.32 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
* {
font-family: 'M PLUS Rounded 1c', Avenir Next, Helvetica, sans-serif;
color: white;
}
body {
background: #8990ec;
}
.wrapper {
height: 525px;
width: 360px;
color: white;
background: #272639;
border-radius: 1rem;
padding: 1.2rem;
margin: 100px auto;
user-select: none;
}
#topContainer {
margin-top: 4rem;
}
.container {
margin-top: 1.4rem;
}
.title {
font-weight: bold;
margin-bottom: 0.6rem;
}
.inputContainer {
background: #353959;
border-radius: 1.4rem;
padding: 0 0.8rem;
display: flex;
align-items: center;
cursor: text;
}
#billTotalInput,
#tipInput {
font-size: 1.2rem;
background: none;
border: none;
outline: none;
padding: none;
}
.buttonContainer {
background: #8990ec;
display: grid;
place-items: center;
width: 1.6rem;
height: 1.6rem;
border-radius: 50%;
}
.splitButton {
background: none;
border: none;
cursor: pointer;
}
.controls {
display: flex;
align-items: center;
}
.splitButton {
font-size: 0.8rem;
font-weight: bold;
display: grid;
place-items: center;
}
.buttonText {
color: #353959 !important;
}
.splitAmount {
font-size: 1.6rem;
margin: 0.8rem;
}
#bottom {
display: flex;
justify-content: space-between;
}
.totalContainer {
display: flex;
flex-direction: column;
align-items: end;
}
.total {
font-size: 2rem;
}