-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.css
More file actions
128 lines (111 loc) · 2.13 KB
/
default.css
File metadata and controls
128 lines (111 loc) · 2.13 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html {
font-family: 'Poppins', sans-serif;
}
body {
background-color: rgba(0, 0, 0, .8);
}
section {
display: flex;
align-items: center;
justify-content: center;
}
input:focus, select:focus, textarea:focus, button:focus {
outline: none;
}
h2 {
font-size: 20px;
}
input {
border-radius: 5px;
border: none;
width: 200px;
height: 30px;
margin-right: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-top: 10px;
font-size: 15px;
padding: 5px;
font-weight: bold;
font-family: 'Poppins', sans-serif;
}
select {
border-radius: 5px;
border: none;
width: 70px;
height: 30px;
font-weight: bold;
font-family: 'Poppins', sans-serif;
font-size: 15px;
}
p {
font-size: 50px;
}
.container {
background-color: rgba(255, 255, 255, 0.404);
border-radius: 10px;
padding: 20px;
margin-top: 20px;
width: 850px;
}
.title {
display: flex;
justify-content: center;
}
.labels {
display: flex;
flex-direction: row;
justify-content: flex-start;
gap: 150px;
margin-left: 30px;
margin-top: 20px;
margin-bottom: 20px;
}
.inputs {
display: flex;
flex-direction: column;
}
.all-buttons {
display: flex;
flex-direction: row;
justify-content: space-evenly;
gap: 20px;
}
.buttons {
display: block;
margin-left: auto;
margin-right: auto;
width: 140px;
height: 40px;
margin-top: 10px;
margin-bottom: 20px;
border: none;
border-radius: 5px;
cursor: pointer;
background-color: rgb(0, 110, 255);
outline: none;
box-shadow: none;
font-size: 13px;
color: white;
}
.buttons:hover {
background-color: rgb(0, 132, 255);
}
.displays {
display: flex;
flex-direction: row;
justify-content: center;
gap: 50px;
}
.display-grade {
display: flex;
justify-content: center;
background-color: white;
border-radius: 5px;
width: 200px;
}