-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
113 lines (95 loc) · 1.66 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
width: 100vw;
overflow-x: hidden;
background-color: rgb(239, 239, 255);
}
.game-wrapper {
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
flex-direction: column;
}
.maindiv {
margin-top: 25px;
display: flex;
flex-direction: column;
border: none;
}
.row {
display: flex;
}
.singlecol {
display: flex;
flex: 1;
width: 80px;
height: 50px;
justify-content: center;
align-items: center;
font-size: xx-large;
padding: 5px 20px;
border: 1px solid black;
cursor: pointer;
}
h1{
font-size: 35px;
margin-bottom: 20px;
}
#resultdiv{
color: green;
font-family: sans-serif;
}
.second-page{
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
flex-direction: column;
}
.btn-of-second-page{
width: 150px;
padding: 10px;
border-radius: 15px;
background-color: rgb(2, 120, 255);
color: white;
font-weight: bold;
border: none;
margin-top: 15px;
cursor: pointer;
transition: all .5s;
}
.headingofsecondpage{
color: black !important;
}
.btn-of-second-page:hover{
background-color: rgb(0, 94, 202);
}
/* transparent area */
.border-left {
border-left: 1px solid transparent;
}
.border-right {
border-right: 1px solid transparent;
}
.border-top {
border-top: 1px solid transparent;
}
.border-bottom {
border-bottom: 1px solid transparent;
}
.none{
display: none !important;
}
.red{
color: red;
}
.white{
color: yellowgreen;
}