-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (71 loc) · 1.36 KB
/
Copy pathstyle.css
File metadata and controls
79 lines (71 loc) · 1.36 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
74
75
76
77
78
79
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: calc(5px + 1vw);
user-select: none;
}
body{
height: 100vh;
width: 100vw;
display: flex;
justify-content:center;
align-items: center;
background-color: black;
}
.wrapper{
width: 20vw;
height: 60vh;
margin-left: 10px;
display: flex;
justify-content: center;
align-items: flex-start;
column-gap: 5%;
flex-wrap: wrap;
padding: 10px;
border-radius: 20px;
box-shadow: 0 0 5px #fff;
}
.input{
width: 100%;
}
#text, .result{
width: 100%;
outline: none;
text-align: end;
padding: 5px;
background-color: transparent;
color: #fff;
border: none;
}
#text{
height: 6vmin;
}
.result{
height: 4vmin;
font-size: calc(5px + 0.7vw);
}
.buttons{
border: 2px solid black;
}
.button{
height: 7vmin;
width: 7vmin;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
margin-top: 10px;
background-color: black;
color: #fff;
box-shadow: 0 0 10px rgb(71, 50, 50) inset;
cursor: pointer;
}
.buttons>div:active{
box-shadow: 0 0 10px rgb(71, 50, 50) ;
font-size: calc(5px + 1.2vw);
}
.funct{
color: orange;
}