-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
124 lines (103 loc) · 2.16 KB
/
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
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
118
119
120
121
122
123
124
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: inherit;
font-size: inherit;
font-weight: normal;
}
html {
font-family: 'Kanit', sans-serif;
font-size: 62.5%;
color: inherit;
width: 100%;
height: 100%;
}
body {
background: rgb(49, 49, 49);
width: 100%;
height: 100%;
font-size: 1.7rem;
color: white;
}
h1 {
font-size: 1.6em;
font-weight: 600;
}
h2 {
font-size: 1.3em;
font-weight: 500;
}
h6 {
font-size: 0.85em;
font-style: italic;
}
.page-wrapper {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
header {
width: 100%;
background: rgb(201, 201, 201);
color: rgb(27, 27, 27);
height: 8vh;
display: flex;
align-items: center;
justify-content: center;
}
main {
width: 100%;
flex: 1;
}
article {
width: 100%;
height: 100%;
display: flex;
}
section {
flex: 1;
padding: 1em;
border: 1px solid white;
}
.exp-register-form {
display: flex;
flex-direction: column;
}
.exp-label {
font-size: .8em;
color: rgb(182, 182, 182);
}
.exp-register-btn {
}
.show-expenses-container {
display: flex;
flex-direction: column;
}
.exp-div {
background: rgb(82, 82, 82);
padding: 0.25em;
display: flex;
flex-direction: column;
margin: 0.5em 0;
}
.exp-div > div:first-child {
display: flex;
justify-content: space-between;
}
footer {
height: 100%;
height: 6vh;
}
footer div {
height: 100%;
display: flex;
align-items: center;
}