-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
127 lines (120 loc) · 2.08 KB
/
styles.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
}
html,
body {
font-family: var(--roboto);
font-size: 36px;
background: rgb(129, 126, 126);
overflow-y: hidden;
}
.container {
width: 850px;
height: 450px;
margin: 200px auto;
display: flex;
flex-direction: column;
justify-content: center;
align-content: center;
color: white;
background: black;
border-radius: 8px;
border: 10px ridge white;
}
.intro {
margin: auto .5rem;
text-align: center;
}
.input-holder {
height: auto;
display: flex;
flex-direction: column;
text-align: center;
justify-content: space-between;
}
.text-field {
width: 400px;
height: 40px;
margin: .5rem auto;
font-size: 20px;
color: white;
background: black;
outline: none;
border: none;
border-bottom: 5px ridge white;
border-radius: 5px;
text-align: center;
}
.btn-check {
width: 150px;
height: 40px;
margin: .5rem auto;
font-size: 18px;
font-weight: 600;
color: white;
background:black;
border: 5px ridge white;;
border-radius: 8px;
padding-top: 4px;
}
/* STYLING RESPONSES */
.isoEval {
text-align: center;
margin: .4rem auto;
color: orange;
}
.isoTrue {
text-align: center;
margin: .4rem auto;
color: #00FF2A;
}
.isoFalse {
text-align: center;
margin: .4rem auto;
color: #FF1919;
}
/* MAX-WIDTH 825PX*/
@media screen and (max-width: 825px) {
.container {
width: 80%;
margin: auto;
}
.intro,
.isoEval,
.isTrue,
.isFalse {
width: 80%;
font-size: .8em;
margin: 0 auto;
}
.input-holder {
width: 100%;
}
.text-field {
width: 70%;
}
}
/* MAX-WIDTH 500PX */
@media screen and (max-width: 500px) {
html,
body {
overflow-y: hidden;
width: 100%;
}
body {
position: relative;
}
.container {
min-width: 340px;
height: 420px;
}
.intro,
.isoEval,
.isTrue,
.isFalse {
font-size: .6em;
}
}