-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (87 loc) · 1.72 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
html {
height: 100vh;
background: #d8af8d;
background: repeating-linear-gradient(
to right,
rgb(229, 248, 240),
rgb(229, 248, 240) 30px,
rgb(214, 245, 232) 30px,
rgb(214, 245, 232) 60px
);
background-size: cover;
}
body {
padding: 2% 10%;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
color: rgb(83, 83, 83);
}
h2 {
text-align: center;
margin-bottom: 25px;
font-variant: small-caps;
}
#add-array-number {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
}
.input-fields {
width: 330px;
height: 150px;
margin: 0 auto 25px auto;
}
.inputs {
width: 220px;
height: 40px;
display: block;
margin: 20px auto 0 auto;
text-align: center;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-size: 1rem;
background: rgba(255, 255, 255, 0.8);
color: rgb(83, 83, 83);
border: none;
}
button {
display: block;
margin: 5px auto 20px auto;
cursor: pointer;
width: 145px;
height: 40px;
background: rgb(245, 252, 249);
border: 2px rgb(89, 151, 125) solid;
font-variant: small-caps;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
color: rgb(89, 151, 125);
font-weight: 700;
}
fieldset {
border: 2px rgb(89, 151, 125) solid;
height: 150px;
}
.array {
width: 330px;
min-height: 20px;
word-wrap: normal;
font-weight: 600;
font-size: 1.1rem;
background: rgba(255, 255, 255, 0.8);
color: rgb(89, 151, 125);
display: block;
margin: 25px auto 15px auto;
padding: 15px 0;
text-align: center;
}
#choose-method {
display: block;
margin-left: auto;
margin-right: auto;
width: 380px;
min-height: 150px;
}
li {
list-style: none;
padding: 1%;
word-wrap: normal;
}