-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
executable file
·116 lines (91 loc) · 1.78 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
body {
width: 100%;
max-width: 100vw;
height: 100%;
padding: 0;
margin: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: space-evenly;
flex-direction: column;
gap: 60px;
}
.card {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 10px;
}
.msg {
color: rgba(25, 25, 25);
}
.msg>.purple {
background-color: rgb(171, 22, 240)
}
.msg>.green {
background-color: rgb(63, 238, 19)
}
#message {
font-size: 11.7pt;
background-color: rgb(25, 25, 25);
color: rgb(209, 206, 206);
border-radius: 13px;
padding: 8px;
margin: 0;
min-height: 300px;
min-width: 600px;
max-height: 500px;
max-width: 800px;
}
.container {
display: flex;
width: 100%;
align-items: center;
justify-content: end;
}
button {
background-color: rgb(25, 25, 25);
color: white;
border: 0;
width: 80px;
height: 60px;
align-self: end;
margin-right: 50px;
border-radius: 15px;
}
button:hover {
background-color: rgba(25, 25, 25, 0.932);
color: rgba(255, 255, 255, 0.911);
cursor: pointer;
}
div>p {
max-width: 250px;
background-color: yellow;
text-align: center;
margin: 0 0 2px 0;
}
p>span {
display: block;
background-color: rgb(243, 243, 63);
}
@media(max-width: 800px) {
.card>h1 {
text-align: center;
}
#message {
font-size: 11.7pt;
background-color: rgb(25, 25, 25);
color: rgb(209, 206, 206);
border-radius: 13px;
padding: 8px;
margin: 0;
height: 170px;
width: 320px;
min-height: 170px;
min-width: 320px;
max-height: 170px;
max-width: 320px;
}
}