-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
152 lines (125 loc) · 2.23 KB
/
style.css
File metadata and controls
152 lines (125 loc) · 2.23 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
html, body {
margin: 0;
padding: 0;
background: whitesmoke;
font-family: Arial, sans-serif;
color: #333;
}
button {
margin: 10px;
padding: 6px 20px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 10px;
cursor: pointer;
}
.nextBtn {
margin: 30px 100px;
}
button:hover {
background-color: #45a049;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
position: absolute;
text-align: center;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 20px;
background: white;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 10px;
padding-bottom: 30px;
padding-top: 30px;
}
input {
margin-right: 10px;
padding: 5px;
border: 1px solid #ccc;
border-radius: 3px;
}
.classNum, .classValue {
display: flex;
justify-content: space-between;
align-items: center;
width: 600px;
margin-bottom: 10px;
}
.head h1 {
margin: 0;
margin-top: 2cap;
font-size: x-large;
}
.head h3 {
margin: 5px 0;
}
.example {
font-size: 0.9em;
color: #777;
margin-bottom: 30px;
}
#averageScore {
margin-top: 20px;
font-size: 1.5em;
font-weight: bold;
background-color: #ebebeb;
width: 150px;
height: 1.5em;
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
margin-bottom: 50px;
}
hr {
width: 100%;
border: 0;
border-top: 1px solid #eee;
margin: 10px 0;
}
.plus {
background-color: #2196F3;
margin-bottom: 20px;
}
.plus:hover {
background-color: #0b7dda;
}
.minus {
background-color: #f44336;
padding: 1px;
padding-left: 6px;
padding-right: 6px;
border-radius: 100%;
}
.minus:hover {
background-color: #da190b;
}
span {
position: relative;
left: 20px;
}
#classNumInput, #scoreInput {
border: 1px solid lightgray;
padding: 20px;
padding-top: 30px;
padding-bottom: 50px;
border-radius: 5cap;
width: 600px;
}
#scoreInput{
margin-top: 30px;
margin-bottom: 30px;
}
#valueBtn {
background-color: #333;
color: white;
font-size: 1.1em;
margin-top: 30px;
}
.sep{
width: 200px;
}