-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
123 lines (102 loc) · 1.91 KB
/
styles.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
*{
margin:0;
padding:0;
}
body{
width:100vw;
height:100vh;
background:#42455a;
}
h1, h2{
text-align:center;
color:#fff;
text-decoration: underline;
}
h1{
padding: 8px;
}
.center {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.courses-header{
position:relative;
top:35px;
}
.container{
text-align: center;
}
.input-box{
position: relative;
top:50px;
}
.buttons{
position:absolute;
display:flex;
left:50%;
top:75%;
transform: translate(-50%, -50%);
padding:5px
}
.buttons button{
display:flex;
border-radius: 100rem;
padding: 1rem;
font-family: 'Avenir Next';
font-size: 1rem;
padding: .5rem 3rem;
color:white;
box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
border: solid 3px transparent;
background-image: linear-gradient(rgba(255, 255, 255, 0),
rgba(255, 255, 255, 0)), linear-gradient(101deg, #78e4ff, #ff48fa);
background-origin: border-box;
background-clip: content-box, border-box;
box-shadow: 2px 1000px 1px #42455a inset;
}
.add-btn{
margin:5px
}
.buttons > .add-btn:hover {
box-shadow: none;
color: white;
}
.cal-btn{
margin:5px
}
.buttons > .cal-btn:hover {
box-shadow: none;
color: white;
}
.del-btn{
margin:5px
}
.buttons > .del-btn:hover {
box-shadow: none;
color: white;
}
.gpa-text{
position:absolute;
top: 55%;
left: 50%;
transform: translate(-50%, -50%);
font-size:20px;
background: linear-gradient(to right,#78e4ff, #ff48fa);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
}
.output-box{
position: absolute;
top: 60%;
left: 50%;
transform: translate(-50%, -50%);
width: 15%;
height:6%;
line-height: 32px;
text-align:center;
background-color:#fff;
}