-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
125 lines (116 loc) · 2.4 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
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #222122;
color: #ffffff;
width: 100%;
height: auto;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.container {
background: #36363639;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
align-content: center;
min-width: 42%;
min-height: 350px;
/* gap: 55px; */
margin-top: 13%;
}
.container h2 {
font-size: 36px;
text-transform: uppercase;
font-family: "Times New Roman", Times, serif;
}
h2 {
/* background-color: #585858; */
width: 85%;
height: auto;
overflow: hidden;
font-stretch: normal;
font-style: normal;
margin-bottom: 48px;
/* padding-bottom: 20px; */
/* text-overflow: ellipsis; */
white-space: pre-wrap;
text-align: center;
color: #ffffff;
text-shadow: 0 1px 8px #000000;
letter-spacing: 2px;
}
.container input {
min-width: 25%;
min-height: 40px;
border: none;
border-radius: 10px;
box-shadow: 0 1px 5px 2px #000000f7;
outline: none;
text-align: center;
font-weight: 600;
font-size: 20px;
margin-bottom: 20px;
background-color: #36363639;
color: rgba(255, 255, 255, 0.551);
}
.container button {
width: 100px;
min-height: 35px;
border-radius: 40px/40px;
border: none;
font-size: 21px;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
transform: 0.1s;
font-weight: 700;
box-shadow: 0 0.5px 1.5px 1px;
margin-bottom: 20px;
background-color: #36363639;
}
.container button:hover {
transition: ease-in-out;
cursor: pointer;
background-color: #6c6c6c;
color: #191919;
}
p {
/* background-color: #7e7b7e; */
min-width: fit-content;
min-height: fit-content;
text-align: center;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
color: rgb(238, 236, 236);
font-weight: 700;
word-wrap: break-word;
margin-top: 2.5%;
margin-left: 20px;
margin-right: 20px;
font-size: 25px;
}
@media screen and (max-width: 800px) {
.container {
width: 50%;
}
.container h2 {
font-size: 19px;
width: 70%;
height: 60px;
margin-bottom: 10%;
text-align: center;
padding-bottom: 0;
}
.container input {
min-width: 17%;
font-size: 20px;
}
.container p {
font-size: 20px;
}
}