-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (55 loc) · 977 Bytes
/
Copy pathstyle.css
File metadata and controls
55 lines (55 loc) · 977 Bytes
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
* {
background-color: transparent;
font-family: Arial;
color: white
}
body {
margin: 0px
}
#wrapper {
display: flex;
align-items: center;
justify-content: center;
background-color: #21d4fd;
background-image: linear-gradient(19deg, #21d4fd 0%, #b721ff 100%);
height: 100vh;
border-width: 0px;
flex-direction: column;
overflow: auto;
padding-bottom: 15px;
padding-top: 15px;
}
#content {
border-style: solid;
border-width: 1px;
border-color: white;
border-radius: 12px;
width: 70vw;
text-align: center;
overflow: auto
}
input,
button {
border-radius: 12px;
border-style: solid;
border-width: 1px;
border-color: white;
color: white;
padding: 7px;
text-align: center;
}
h1, h2 {
font-weight: normal;
}
#oblicz {
margin-top: 15px;
font-weight: bold
}
#reset {
display: none;
margin-top: 15px;
font-weight: bold
}
#output {
visibility: hidden;
}