-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (78 loc) · 1.26 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
* {
/* border: 1px solid red; */
font-family: "Roboto", sans-serif;
font-size: 1.1rem;
}
.box {
box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}
body {
margin: 0;
padding: 0;
height: 90vh;
width: 100vw;
}
button {
min-width: 2rem;
min-height: 2rem;
margin: 0;
padding: 0;
border-radius: 100px;
border: none;
background-color: white;
}
.btn-type1 {
padding: 0rem;
min-width: 90px;
border-radius: 10px;
border: none;
background-color: white;
}
.container {
padding: 1rem;
margin: 1rem;
max-width: 280px;
width: 80%;
border-radius: 20px;
}
.screen {
width: 100%;
padding: 0rem;
}
.space {
padding: 0rem;
margin: 0.4rem;
width: 90%;
text-align: end;
}
.space-2 {
padding: 0.5rem;
margin: 0.2rem;
width: 75%;
/* border: 1px solid black; */
border-radius: 10px;
}
.fr {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.fc {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.fjc-e {
justify-content: flex-end;
}
.fjc-sa {
justify-content: space-around;
}
.fjc-sb {
justify-content: space-between;
}
.fjc-se {
justify-content: space-evenly;
}