-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
134 lines (119 loc) · 1.98 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
*{
padding: 0;
margin: 0;
}
.heading1{
color: grey;
}
.heading2{
color: rgb(13, 171, 234);
}
body{
background-color:black;
}
.topic{
display: flex;
justify-content: center;
}
.smallhead{
color: rgba(237, 234, 234, 0.646);
display: flex;
justify-content: center;
}
.form{
background-color: rgb(18, 46, 57);
height: 75vh;
width: 30vw;
margin-left: 35vw;
margin-top: 8vh;
padding: 10px;
border: 0.4px solid white;
border-radius: 5px;
}
.navbar{
color: white;
height: 8vh;
}
li{
display: inline-block;
height: 1vh;
padding: 1vw;
transition: 0.1s;
&:hover{
text-decoration: underline white;
scale: 1.1;
box-shadow: 1px 1px 2px 0.7px grey;
background-color: silver;
color: black;
}
}
ul{
padding-left: 70vw;
}
.whitecard{
background-color: rgb(67, 116, 141);
color: black;
text-align: center;
height: 4vh;
font-size: medium;
font-style:unset;
text-decoration: underline;
&:hover{
color: white;
}
}
label{
color: white;
}
input {
color: white;
background-color: black;
border: 1px black solid;
border-radius: 3px;
width: 100%;
transition: 0.1s;
&:hover{
box-shadow: 2px 2px 3px 1px silver;
color: skyblue;
scale: 1.07;
}
}
select{
color: white;
background-color: black;
border: 1px black solid;
border-radius: 3px;
width: 98%;
}
.text{
color: white;
text-align: center;
}
.number{
color: white;
text-align: center;
}
.note{
color: white;
text-align: center;
}
button{
background-color: skyblue;
color: black;
height: 4vh;
width: 4vw;
transition: 0.2s;
&:hover{
background-color: black;
color: skyblue;
height: 4.5vh;
width: 4.8vw;
box-shadow: 2px 2px 3px 1px lightblue;
}
}
h1:hover{
box-shadow: 2px 2px 5px 1px lightblue;
height: 40px;
scale: 1.1;
cursor: pointer;
}