-
Notifications
You must be signed in to change notification settings - Fork 4
/
scramble.css
101 lines (85 loc) · 1.76 KB
/
scramble.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
* {
margin: 0;
padding:0;
box-sizing: border-box;
font-family: sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.scrambleContainer {
width: 750px;
background: #83efc9bb;
border-radius: 7px;
}
.scrambleContainer .scrambleNavBar{
display: flex;
align-items: center;
justify-content: space-around;
}
.scrambleContainer h2 {
font-size: 25px;
font-weight: 500;
padding: 18px 25px;
border-bottom: 1px solid #ccc;
}
.scrambleContainer .content {
margin: 25px 20px 20px 35px;
}
.content .word {
font-size: 33px;
font-weight: 500;
text-align: center;
letter-spacing: 24px;
margin-right: -24px;
text-transform: uppercase;
}
.content .scramble-details {
margin: 25px 0 20px;
}
.scramble-details p {
font-size: 18px;
margin-bottom: 10px;
}
.scramble-details p b {
font-weight: 500;
}
.content input {
width: 100%;
height: 60px;
outline: none;
font-size: 18px;
padding: 0 16px;
border-radius: 5px;
border: 1px solid #aaa;
}
.content .buttons {
display: flex;
margin-top: 20px;
justify-content: space-between;
}
.buttons button {
border: none;
outline: none;
color: #000000;
cursor: pointer;
font-size: 17px;
width: calc(100% / 2 - 8px);
border-radius: 5px;
padding: 15px 0;
}
.buttons .Refresh-It {
background: #d5d5d5;
box-shadow: 2px 2px 15px green;
}
.buttons .Check-It:hover, .Refresh-It:hover{
transform: scale(1.03);
transition: all 0.15s linear;
}
.buttons .Check-It {
background: #78da47;
box-shadow: 2px 2px 15px green;
}