-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
87 lines (78 loc) · 1.17 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
.body{
margin: 0;
padding: 0;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.container{
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: black;
flex-wrap: wrap;
}
.box {
height: 75vh;
color:white;
width:60vh;
border-radius: 3vh;
background-color: hsl(228deg 21% 17%);
}
.box2{
margin:4vh;
z-index: 2;
}
.box2 h3{
color:gray;
}
.circle{
display: flex;
justify-content: center;
align-items: center;
height:8vh;
width:8vh;
background-color: grey;
border-radius: 50%;
font-size: 2rem;
cursor: pointer;
}
.circle:hover{
background-color: black;
color: aliceblue;
}
.circle button{
background-color: grey;
}
.logo img{
height: 30px;
}
.numbers{
display: flex;
justify-content: center;
gap:2vh;
}
.submit{
display: flex;
justify-content: center;
}
.submit button{
background-color: orange;
width: 47vh;
height: 6vh;
margin: 2vh;
color: white;
border-radius: 4vh;
}
.box3{
margin: 6vh;
justify-content: center;
text-align: center;
z-index: 1;
}
.text{
border-radius: 4vh;
padding: 1vh;
}
.upper{
top: 10vh;
}