-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (64 loc) · 1.17 KB
/
style.css
File metadata and controls
74 lines (64 loc) · 1.17 KB
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
// delete the following line if no text is used
// edit the line if you wanna use other fonts
@import url(https://fonts.googleapis.com/css?family=Open+Sans:700,300);
// use only the available space inside the 400x400 frame
.frame {
position: absolute;
top: 50%;
left: 50%;
width: 110px;
height: 40px;
margin-top: -50px;
margin-left: -75px;
overflow: hidden;
font-family: 'Open Sans', Helvetica, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.center {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
.container {
display: flex;
border: 2px solid white;
background: #ea3ffd;
border-radius: 10rem;
width: 60%;
height: 10%;
padding: 1rem;
justify-content: space-between;
align-items: center;
align-content: center;
}
h1 {
margin: 0;
padding: 0;
user-select: none;
font-size: 1em;
color:white;
}
.col-1 {
width: 45%;
}
.col-2 {
width: 25%;
}
.col > button, .number {
width: 100%;
background: #ea3ffd;
border: 0px;
text-align: center;
color: white;
}
.button {
font-family: sans-serif;
font-size: 1.5em;
}
button {
user-select: none;
outline: none;
background: violet;
}