-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
93 lines (93 loc) · 1.71 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
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
body {
background: #222222;
font-family: "Montserrat", sans-serif;
}
#title {
color: white;
font-family: "Montserrat", sans-serif;
text-align: center;
margin-top: 5vh;
}
.header {
padding: 5px;
text-align: center;
background: #000000;
color: white;
font-size: 30px;
}
.subjects {
margin-top: 2vh;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}
.subject {
background: white;
border-radius: 0px;
margin-top: 3vh;
margin-left: 6vw;
margin-right: 6vw;
}
.subjectinput {
font-family: "Montserrat", sans-serif;
border: none;
border-radius: 0px;
padding-left: 1vw;
padding-right: 1vw;
padding-top: 1vh;
padding-bottom: 1vh;
margin-left: 2vw;
margin-right: 2vw;
margin-top: 2vh;
margin-bottom: 2vh;
}
.selector {
font-family: "Montserrat", sans-serif;
border: none;
border-radius: 0px;
padding-left: 1vw;
padding-right: 1vw;
padding-top: 1vh;
padding-bottom: 1vh;
margin-left: 2vw;
margin-right: 2vw;
margin-top: 2vh;
margin-bottom: 2vh;
cursor: pointer;
}
.addproject {
border-radius: 50%;
margin-top: 3vh;
width: 3em;
height: 3em;
border: none;
text-align: center;
margin: 0 auto;
display: block;
cursor: pointer;
background: white;
}
.submit {
margin-top: 3vh;
width: 10em;
height: 3em;
border: none;
text-align: center;
margin: 0 auto;
display: block;
cursor: pointer;
font-family: "Montserrat", sans-serif;
color: white;
background: #4caf50;
}
.submit:hover {
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.close {
cursor: pointer;
padding: 12px 16px;
}
select::-ms-expand {
display: none;
}