-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (87 loc) · 1.67 KB
/
style.css
File metadata and controls
93 lines (87 loc) · 1.67 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
body{
background: linear-gradient(to right, rgb(0, 170, 255), rgb(54, 79, 238));
}
h1{
font-size: 3em;
}
.container{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
align-content: center;
background-color: rgb(204, 180, 183);
border: 3px solid rgb(186, 243, 88);
color: wheat;
padding: 5%;
margin-top: 20px;
text-align: center;
width: 100%;
height: 95%;
}
@media (max-width: 800px){
input[type="checkbox"], label{
position: relative;
bottom: 10px;
}
}
input[type="number"]{
border: 1px solid black;
font-weight: bold;
padding: 0;
}
.result-container{
text-align: center;
padding: 15px;
width: 90%;
}
.decisions{
text-align: left;
}
@media (max-width: 800px){
.decisions{
display: block;
}
}
input, label{
color: #0e0e0e;
font-size: 1.3em;
text-align: center;
font-weight: normal;
padding: 10px;
}
@media (max-width: 800px){
input, label{
font-size: .9em;
padding: 2px;
}
}
#includeUpper, #includeSymbols, #includeLower, #includeNumbers{
margin-top: 15px;
background: black;
}
button{
margin-top: 15px;
background-color: wheat;
color: black;
font-weight: bolder;
padding: 10px;
font-size: 1.2em;
text-align: center;
width: 100%;
outline: 1px solid wheat;
box-shadow: 4px 4px 4px rgb(238, 152, 54);
}
#passw{
color: black;
padding: 5px;
font-size: 2em;
background-color: wheat;
font-weight: bold;
box-shadow: 4px 4px 4px rgb(238, 152, 54);
}
@media (max-width: 800px){
#passw{
font-size: 1.3em;
}
}