forked from cmda-minor-web/web-app-from-scratch-2223
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·53 lines (53 loc) · 985 Bytes
/
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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Courier New', Courier, monospace;
}
body{
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(186, 186, 186);
}
section{
height: auto;
width: 40%;
display: flex;
justify-content: space-between;
align-items: start;
flex-direction: column;
padding: 20px;
background-color: rgb(92, 0, 145);
color: white;
border-radius: 20px;
row-gap: 20px;
margin: 20px;
}
article{
width: 100%;
height: 80%;
display: flex;
justify-content: space-around;
align-items: start;
flex-direction: column;
}
button{
width: 100px;
height: 30px;
border: 1px solid black;
border-radius: 5px;
background-color: black;
color: white;
}
button:hover{
border: 1px solid white;
background-color: white;
color: black;
font-weight: 600;
}
.loading-text{
color: white;
}